fix: build errors

This commit is contained in:
trafficlunar 2026-04-16 22:54:35 +01:00
parent 59bc1d3ace
commit d208565a61
20 changed files with 37 additions and 48 deletions

View file

@ -3,7 +3,6 @@ import { type FileWithPath } from "react-dropzone";
import { Icon } from "@iconify/react";
import qrcode from "qrcode-generator";
import { MiiGender, MiiMakeup, MiiPlatform } from "@tomodachi-share/backend";
import { nameSchema, tagsSchema } from "@tomodachi-share/shared/schemas";
import { defaultInstructions, type SwitchMiiInstructions, ThreeDsTomodachiLifeMii, convertQrCode } from "@tomodachi-share/shared";
@ -21,6 +20,7 @@ import LikeButton from "../like-button";
import Carousel from "../carousel";
import SubmitButton from "../submit-button";
import Dropzone from "../dropzone";
import type { MiiPlatform, MiiGender, MiiMakeup } from "@tomodachi-share/shared";
export default function SubmitForm() {
const [files, setFiles] = useState<FileWithPath[]>([]);

View file

@ -1,6 +1,5 @@
import { useState } from "react";
import { MiiGender } from "@tomodachi-share/backend";
import type { SwitchMiiInstructions } from "@tomodachi-share/shared";
import type { MiiGender, SwitchMiiInstructions } from "@tomodachi-share/shared";
import EnhancedSlider from "../enhanced-slider";
import DatingPreferencesViewer from "../../../mii/dating-preferences";
import VoiceViewer from "../../../mii/voice-viewer";