Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lowtorola committed Sep 25, 2024
1 parent 4e7422f commit 5dd411c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion frontend2/src/api/team/teamApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,9 @@ export const searchTeams = async ({
* @param episodeId The current episode's ID.
* @param teamAvatarRequest The avatar file.
*/
export const teamAvatarUpload = async (teamAvatarRequest: TeamTAvatarCreateRequest): Promise<void> => {
export const teamAvatarUpload = async (
teamAvatarRequest: TeamTAvatarCreateRequest,
): Promise<void> => {
await API.teamTAvatarCreate(teamAvatarRequest);
};

Expand Down
5 changes: 4 additions & 1 deletion frontend2/src/components/tables/scrimmaging/TeamsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,10 @@ const TeamsTable: React.FC<TeamsTableProps> = ({
header: "Team",
key: "team",
value: (team) => (
<NavLink to={`/${episodeId}/team/${team.id}`} className="hover:underline">
<NavLink
to={`/${episodeId}/team/${team.id}`}
className="hover:underline"
>
{trimString(team.name, 13)}
</NavLink>
),
Expand Down

0 comments on commit 5dd411c

Please sign in to comment.