fix: remove prefetch achievement

Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
Innei 2024-10-23 15:46:11 +08:00
parent 667c3f77c3
commit 619aa82b5c
No known key found for this signature in database
GPG Key ID: 0F62D33977F021F7
1 changed files with 3 additions and 6 deletions

View File

@ -21,6 +21,7 @@ import { apiClient } from "~/lib/api-fetch"
import { Chain } from "~/lib/chain"
import { cn } from "~/lib/utils"
import achievementAnimationUri from "~/lottie/achievement.lottie?url"
import type { ExtractBizResponse } from "~/models"
const absoluteachievementAnimationUri = new URL(achievementAnimationUri, import.meta.url).href
enum AchievementsActionIdMap {
@ -72,12 +73,8 @@ const achievementActionIdCopyMap: Record<
description: "achievement.alpha_tester_description",
},
}
const _achievementType = apiClient.achievement.$get({
query: {
type: "all",
},
})
type Achievement = Awaited<typeof _achievementType>["data"]
type Achievement = ExtractBizResponse<typeof apiClient.achievement.$get>["data"]
export const AchievementModalContent: FC = () => {
const jotaiStore = useStore()