From 340441787666bca206a9efcb928292c5fc2a79a5 Mon Sep 17 00:00:00 2001 From: Sasi Date: Wed, 13 Dec 2023 22:46:32 +0530 Subject: [PATCH] fix: broken icon --- src/components/Transaction/index.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/Transaction/index.tsx b/src/components/Transaction/index.tsx index a9cc864..c94a90b 100644 --- a/src/components/Transaction/index.tsx +++ b/src/components/Transaction/index.tsx @@ -11,7 +11,6 @@ import { useRouter } from 'next/router'; import type { FC, ReactNode } from 'react'; import { useEffect, useState } from 'react'; -import { apps } from '@/data/apps'; import type { MomokaTransaction, Profile as TProfile } from '@/generated'; import { useMomokaTransactionQuery } from '@/generated'; import Custom404 from '@/pages/404'; @@ -244,14 +243,14 @@ const Transaction: FC = () => { title="Posted via" value={
- {apps.includes(momokaTransaction?.app?.id) && ( + {/* {apps.includes(momokaTransaction?.app?.id) && ( {momokaTransaction?.app?.id} - )} + )} */} {capitalizeCase(momokaTransaction?.app?.id)}
}