Compare commits

...

2 Commits

Author SHA1 Message Date
ea9f6c0899 fix: dl button from listing 2023-05-15 00:28:42 +01:00
c07c893767 fix: react warning for "p>div 2023-05-15 00:27:21 +01:00
2 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ const getSDKVersion = async () => {
export function SDKVersion() {
const sdkVersion = usePromise(getSDKVersion, []);
return (
<Flex pl="1" alignItems="center">
<Flex as="span" pl="1" alignItems="center">
<Tooltip
hasArrow
placement="top"

View File

@ -87,8 +87,8 @@ export function FileRow({ id, file }: FileRowProps) {
<WrapItem>
{/* TODO: Use correct file name */}
{file.decrypted && (
<Link type="button" as={Button} isExternal href={file.decrypted} download={decryptedName}>
<Link isExternal href={file.decrypted} download={decryptedName}>
<Button as="span"></Button>
</Link>
)}
</WrapItem>