Skip to content

Commit

Permalink
fix: broken icon
Browse files Browse the repository at this point in the history
  • Loading branch information
sasicodes committed Dec 13, 2023
1 parent 64c1084 commit 3404417
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/Transaction/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -244,14 +243,14 @@ const Transaction: FC = () => {
title="Posted via"
value={
<div className="flex items-center space-x-2">
{apps.includes(momokaTransaction?.app?.id) && (
{/* {apps.includes(momokaTransaction?.app?.id) && (
<img
src={`https://static-assets.hey.xyz/images/source/${momokaTransaction?.app?.id}.jpeg`}
className="h-5 w-5 rounded-full"
alt={momokaTransaction?.app?.id}
draggable={false}
/>
)}
)} */}
<span>{capitalizeCase(momokaTransaction?.app?.id)}</span>
</div>
}
Expand Down

1 comment on commit 3404417

@vercel
Copy link

@vercel vercel bot commented on 3404417 Dec 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.