feat: mount / unmount

This commit is contained in:
Nicolas Meienberger
2025-09-23 18:22:54 +02:00
parent 833bcb590f
commit f67152146d
17 changed files with 464 additions and 25 deletions

View File

@@ -3,5 +3,9 @@ export const parseError = (error?: unknown) => {
return { message: error.message as string };
}
if (typeof error === "string") {
return { message: error };
}
return undefined;
};