fix: type check in plugins (#3337)

This commit is contained in:
Alex Yang
2023-07-21 03:28:55 +08:00
committed by GitHub
parent c2f6bb152c
commit c319e7e707
2 changed files with 8 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
import { IconButton, Tooltip } from '@affine/component';
import { AffineLogoSBlue2_1Icon } from '@blocksuite/icons';
import { Logo1Icon } from '@blocksuite/icons';
import { useCallback } from 'react';
export const HeaderItem = () => {
@@ -10,7 +10,7 @@ export const HeaderItem = () => {
console.log('clicked hello world!');
}, [])}
>
<AffineLogoSBlue2_1Icon />
<Logo1Icon />
</IconButton>
</Tooltip>
);