fix: directory table multi select

This commit is contained in:
2025-09-21 15:12:05 +00:00
parent 7eefe2b96e
commit 19535396ad
5 changed files with 195 additions and 6 deletions

View File

@@ -17,6 +17,7 @@ export function isApplicationError(error: unknown): error is ApplicationError {
export function create(code: Code, message?: string) {
return new ConvexError({
code,
message,
message:
code === Code.Internal ? "Internal application error" : message,
})
}