Fix variable typo (#8084)

This commit is contained in:
Nam Vu
2024-09-08 12:14:11 +07:00
committed by GitHub
parent b1918dae5e
commit 2d7954c7da
215 changed files with 599 additions and 597 deletions

View File

@@ -8,7 +8,7 @@ import {
Md,
Pdf,
Txt,
Unknow,
Unknown,
Xlsx,
} from '@/app/components/base/icons/src/public/files'
import { Notion } from '@/app/components/base/icons/src/public/common'
@@ -47,7 +47,7 @@ const FileIcon: FC<FileIconProps> = ({
case 'notion':
return <Notion className={className} />
default:
return <Unknow className={className} />
return <Unknown className={className} />
}
}