Skip to content

Commit 8ed4f89

Browse files
committed
fix(frontend): remove unused err variable in Auth.jsx
1 parent 7b91f98 commit 8ed4f89

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/pages/Auth.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const DynamicUserForm = ({ schema, formData, onChange, isEdit = false }) => {
7878
const parsed = JSON.parse(val);
7979
onChange(`_error_${field.key}`, null);
8080
onChange(field.key, parsed); // Store parsed value if valid
81-
} catch (err) {
81+
} catch {
8282
onChange(`_error_${field.key}`, "Invalid JSON format");
8383
}
8484
}}

0 commit comments

Comments
 (0)