feat/odflaknutyRefreshDat #17

Merged
batmanisko merged 7 commits from feat/odflaknutyRefreshDat into master 2025-08-01 09:05:51 +02:00
Showing only changes of commit a3dfdb17e8 - Show all commits

View File

@ -21,7 +21,7 @@ export default function SettingsModal({ isOpen, onClose, onSave }: Readonly<Prop
const [refreshLoading, setRefreshLoading] = useState(false);
const [refreshMessage, setRefreshMessage] = useState<{ type: 'success' | 'error', text: string } | null>(null);
const handleRefresh = () => {
const handleRefresh = async () => {
const password = refreshPassRef.current?.value;
const type = refreshTypeRef.current?.value;
if (!password || !type) {