Minor app improvements.

This commit is contained in:
Patrick Fic
2025-03-06 15:00:44 -08:00
parent 981012f20e
commit 45ed6f7804
10 changed files with 138 additions and 94 deletions

View File

@@ -20,7 +20,7 @@ export function JobSpaceAvailable({ bodyshop, style, jobid }) {
const { t } = useTranslation();
const { data } = useQuery(GET_DOC_SIZE_TOTALS, {
variables: { jobId: jobid },
skip: !jobid,
skip: !jobid || jobid === "temp",
});
if (!jobid || !data) return <></>;