TEMPORARY FIX TO TEST BUILD

This commit is contained in:
2025-04-10 23:18:19 +05:00
parent e8296ae3f6
commit b932fcf03c
49 changed files with 8314 additions and 8858 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ import { getAtolls } from "@/queries/islands";
import { keepPreviousData, useQuery } from "@tanstack/react-query";
export default function SignUpForm() {
const { data: atolls, isFetching } = useQuery<ApiResponse<Atoll>>({
const { data: atolls } = useQuery<ApiResponse<Atoll>>({
queryKey: ["ATOLLS"],
queryFn: () => getAtolls(),
placeholderData: keepPreviousData,