diff --git a/packages/web/components/Player/PlayerTile.tsx b/packages/web/components/Player/PlayerTile.tsx index a862a089..f3f2f1f9 100644 --- a/packages/web/components/Player/PlayerTile.tsx +++ b/packages/web/components/Player/PlayerTile.tsx @@ -13,7 +13,6 @@ import { Wrap, WrapItem, } from '@metafam/ds'; -import { MetaLink } from 'components/Link'; import { PlayerAvatar } from 'components/Player/PlayerAvatar'; import { PlayerContacts } from 'components/Player/PlayerContacts'; import { PlayerTileMemberships } from 'components/Player/PlayerTileMemberships'; @@ -48,31 +47,25 @@ export const PlayerTile: React.FC = ({ player }) => { : description; return ( - - - + + + - - - - - {getPlayerName(player)} - - - + + + + {getPlayerName(player)} + + {player.playerType?.title ? ( @@ -93,9 +86,7 @@ export const PlayerTile: React.FC = ({ player }) => { )} - {`XP: ${Math.floor( - player.total_xp, - )}`} + XP: {Math.floor(player.total_xp)} {tzDisplay?.timeZone ? ( @@ -116,29 +107,29 @@ export const PlayerTile: React.FC = ({ player }) => { ) : null} - - {player.Player_Skills.length ? ( - - SKILLS - s.Skill) as Skill[]} - /> - - ) : null} + + + {player.Player_Skills.length ? ( + + SKILLS + s.Skill) as Skill[]} + /> + + ) : null} - + - {player.Accounts.length ? ( - - CONTACT - - - - - ) : null} - - - + {player.Accounts.length ? ( + + CONTACT + + + + + ) : null} + + ); };