Add comprehensive error handling and recovery UI #173

Merged
talksik merged 11 commits from claude/electron-error-handling-tPCJO into master 2026-04-21 02:22:02 +00:00
Showing only changes of commit cc16310d12 - Show all commits
+1 -1
View File
@@ -30,7 +30,7 @@ export function useCreateParticle() {
mutationFn: async (params: CreateParticleParams) => {
const { networkId } = parseParticlePath(params.path);
// Containers aren't counted server-side, so we don't block them.
// Containers aren't counted server-side, so we block them here
if (!CONTAINER_TYPES.has(params.type)) {
const cached = qc.getQueryData<NetworkUsage>(networkUsageQueryKey(networkId));
if (isUsageExhausted(cached)) {