refactor(types): align core types with backend contract

This commit is contained in:
zetaloop
2026-02-28 07:34:14 +08:00
parent 80daf60ebe
commit e9b0dced0e
3 changed files with 41 additions and 39 deletions
+2 -2
View File
@@ -42,14 +42,14 @@ export default function VerifyPage() {
)
const buildMaterials = () => {
const materials: Record<string, string> = {
const materials = {
realName,
idNumber,
gameProfile,
idCardFront: "mock://idCardFront",
idCardBack: "mock://idCardBack",
gameScreenshot: "mock://gameScreenshot",
}
} satisfies Record<string, string>
return materials
}