Skip to content

Commit

Permalink
[Refactor] 리액트 아이콘 대신 HTML 문자 엔티티 사용 #1210
Browse files Browse the repository at this point in the history
  • Loading branch information
Clearsu committed Jan 9, 2024
1 parent c379336 commit ecc3706
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions components/tournament/UserTournamentBracket.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Match } from '@g-loot/react-tournament-brackets/dist/src/types';
import { useQuery } from 'react-query';
import { useSetRecoilState } from 'recoil';
import { IoReloadSharp } from 'react-icons/io5';
import { instance } from 'utils/axios';
import { convertTournamentGamesToBracketMatchs } from 'utils/handleTournamentGame';
import { errorState } from 'utils/recoil/error';
Expand Down Expand Up @@ -61,7 +60,7 @@ export default function UserTournamentBraket({
onClick={() => refetch()}
className={isFetching ? styles.refetching : ''}
>
<IoReloadSharp />
&#8635;
</button>
)}
<TournamentBraket
Expand Down

0 comments on commit ecc3706

Please sign in to comment.