Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-17 00:53:41 +00:00
co-authored by renee-png
parent 00e538d4dd
commit 3bff8c7ae4
+3
View File
@@ -278,6 +278,8 @@ export function QuickAddExpense() {
const { user } = useAuth();
const [open, setOpen] = useState(false);
const { clients, cases } = useClientsAndCases(open);
const fees = useFeeItems(open, "expense");
const [feeId, setFeeId] = useState("");
const [submitting, setSubmitting] = useState(false);
const [form, setForm] = useState({
clientId: "",
@@ -304,6 +306,7 @@ export function QuickAddExpense() {
billable: true,
});
setReceipt(null);
setFeeId("");
};
const submit = async (e: React.FormEvent) => {