adds prod container and fixes build issues

This commit is contained in:
2025-08-03 11:38:09 +02:00
parent 1aa28f978d
commit 898e275809
6 changed files with 25 additions and 5 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ export default function Quota({
async function getProfile() {
if (!auth.isLoading && !auth.error && auth.isAuthenticated) {
const { data: profile } = await api?.profiles?.me({});
setQuota(profile?.quota);
setQuota((profile as Profile)?.quota);
}
}
useEffect(() => {