Fixed bug updated gitignore

This commit is contained in:
Christopher
2026-01-22 05:12:21 -08:00
parent bb1d31c1e7
commit ce16f6e8dd
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -39,3 +39,6 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts
# uploads
/public/uploads/
+1 -1
View File
@@ -555,7 +555,7 @@ export default function AdminPage() {
</div>
<div style={{ paddingTop: '8px' }}>
<button className="btn btn-primary" onClick={handleSaveSettings} disabled={savingSettings}>
<button className="btn btn-primary" onClick={() => handleSaveSettings()} disabled={savingSettings}>
{savingSettings ? 'Saving...' : 'Save Settings'}
</button>
</div>