// Settings.tsx import { useAppDispatch, useAppSelector } from "@/app/store"; import { setApiKey } from "@/app/store/slices/authSlice"; const Settings = () => { const dispatch = useAppDispatch(); const apiKey = useAppSelector((state) => state.auth.apiKey); return (