Skip to content

Commit

Permalink
fix: 계정 설정 페이지 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
PMtHk committed Nov 25, 2024
1 parent 2edcf5d commit f454de9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion apps/client/src/components/KanbanBoard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,6 @@ export default function KanbanBoard() {
</DialogFooter>
</DialogContent>
</Dialog>
;
</div>
);
}
5 changes: 2 additions & 3 deletions apps/client/src/routes/_auth.account.settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ export const Route = createFileRoute('/_auth/account/settings')({
queryKey: ['project', 'invitations'],
queryFn: async () => {
try {
const invitations = await axiosInstance.get<GetProjectInvitationsResponseDTO>(
'/api/project/invitations'
);
const invitations =
await axiosInstance.get<GetProjectInvitationsResponseDTO>('/project/invitations');
return invitations.data.result;
} catch {
throw new Error('Failed to fetch invitations');
Expand Down

0 comments on commit f454de9

Please sign in to comment.