Skip to content

Commit

Permalink
prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gouravmpk committed Feb 14, 2024
1 parent e358bb2 commit b0f85df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/superadmin/tableComponent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,9 @@ export const MyTable = ({
target="_blank"
rel="noopener noreferrer"
>
{bounty?.title.length > 50 ? `${bounty?.title.substring(0, 47)}...` : bounty?.title}
{bounty?.title.length > 50
? `${bounty?.title.substring(0, 47)}...`
: bounty?.title}
</a>
</BountyData>
<TableData>{created}</TableData>
Expand Down

0 comments on commit b0f85df

Please sign in to comment.