From 0c0b1ee811d767c35e47c7e6bcbd91ff2a3e5fd3 Mon Sep 17 00:00:00 2001 From: Lars Date: Fri, 20 Mar 2026 10:36:00 +0100 Subject: [PATCH] fix: add missing Link import in SettingsPage Critical bug fix: - Added missing "import { Link } from 'react-router-dom'" - Caused Settings page to crash on render - Route /settings now works again Co-Authored-By: Claude Opus 4.6 --- frontend/src/pages/SettingsPage.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/pages/SettingsPage.jsx b/frontend/src/pages/SettingsPage.jsx index 4318060..ec47d2e 100644 --- a/frontend/src/pages/SettingsPage.jsx +++ b/frontend/src/pages/SettingsPage.jsx @@ -1,4 +1,5 @@ import { useState } from 'react' +import { Link } from 'react-router-dom' import { Save, Download, Upload, Trash2, Plus, Check, Pencil, X, LogOut, Shield, Key } from 'lucide-react' import { useProfile } from '../context/ProfileContext' import { useAuth } from '../context/AuthContext'