feat(post): add support for static GIFs

This commit is contained in:
Tom (plebeius.eth)
2024-07-20 16:25:20 +02:00
parent b3f0b04e43
commit 7253e4d1a0
39 changed files with 134 additions and 41 deletions
+4 -2
View File
@@ -15,8 +15,10 @@ export const getDisplayMediaInfoType = (type: string, t: any) => {
switch (type) {
case 'image':
return t('image');
case 'gif':
return t('gif');
case 'animated gif':
return t('animated_gif');
case 'static gif':
return t('static_gif');
case 'iframe':
return t('iframe');
case 'video':