- {getIconFromFileType(file.file_type)}
+ {getIconFromFilename(file.file_type)}
{file.name}
{file.size && (
diff --git a/src/interface/web/app/components/logo/fileLogo.tsx b/src/interface/web/app/components/logo/fileLogo.tsx
index 56bef3f7..e6e8217f 100644
--- a/src/interface/web/app/components/logo/fileLogo.tsx
+++ b/src/interface/web/app/components/logo/fileLogo.tsx
@@ -81,111 +81,3 @@ export function OrgMode({ className }: { className?: string }) {
);
}
-
-export function Markdown({ className }: { className?: string }) {
- const classes = className ?? "w-6 h-6 text-muted-foreground inline-flex mr-1";
- return (
-
- );
-}
-
-export function Pdf({ className }: { className?: string }) {
- const classes = className ?? "w-6 h-6 text-muted-foreground inline-flex mr-1";
- return (
-
- );
-}
-
-export function Word({ className }: { className?: string }) {
- const classes = className ?? "w-6 h-6 text-muted-foreground inline-flex mr-1";
- return (
-
- );
-}