diff --git a/web/src/components/quest-table.tsx b/web/src/components/quest-table.tsx index 0915bec..e5db64f 100644 --- a/web/src/components/quest-table.tsx +++ b/web/src/components/quest-table.tsx @@ -212,13 +212,6 @@ function QuestTableContent({ quests }: { quests: QuestListItem[] }) { } export function QuestTable({ quests, isLoading, onRefresh }: QuestTableProps) { - const [isRefreshing, setIsRefreshing] = React.useState(false); - - const handleRefresh = async () => { - setIsRefreshing(true); - onRefresh?.(); - }; - return ( @@ -235,11 +228,11 @@ export function QuestTable({ quests, isLoading, onRefresh }: QuestTableProps) { )}