multi-file update

This commit is contained in:
jason
2026-03-13 11:13:45 -05:00
parent 5e3ca19c83
commit b2df27cfc5
6 changed files with 52 additions and 13 deletions
+3 -3
View File
@@ -314,12 +314,12 @@ export default function ReportForm() {
</section>
<footer className="pt-8 border-t border-white/10 flex justify-end gap-4">
<button
<button
onClick={exportToDrive}
disabled={saving || report.status === 'SUBMITTED'}
disabled={saving}
className="btn-primary flex items-center gap-2 px-8"
>
{saving ? "Processing..." : (report.status === 'SUBMITTED' ? "Already Submitted" : "Finalize & Export to Drive")}
{saving ? "Processing..." : (report.status === 'SUBMITTED' ? "Re-export to Drive" : "Finalize & Export to Drive")}
<Send size={18} />
</button>
</footer>