"use client"; import { SwitchMiiInstructions } from "@/types"; interface Props { data: SwitchMiiInstructions["personality"]; onClick?: (key: string, i: number) => void; } const PERSONALITY_SETTINGS: { label: string; left: string; right: string }[] = [ { label: "Movement", left: "Slow", right: "Quick" }, { label: "Speech", left: "Polite", right: "Honest" }, { label: "Energy", left: "Flat", right: "Varied" }, { label: "Thinking", left: "Serious", right: "Chill" }, { label: "Overall", left: "Normal", right: "Quirky" }, ]; export default function PersonalityViewer({ data, onClick }: Props) { return (