06bc91ac13
Add iOS Shortcuts/Siri intents, local send-reminder notifications, stable client picker with last-client defaults, account refresh/remove, and softer session handling on unauthorized API responses. Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
248 B
TypeScript
9 lines
248 B
TypeScript
import { TRPCClientError } from "@trpc/client";
|
|
|
|
export function isUnauthorizedError(error: unknown): boolean {
|
|
return (
|
|
error instanceof TRPCClientError &&
|
|
(error.data?.code === "UNAUTHORIZED" || error.message === "UNAUTHORIZED")
|
|
);
|
|
}
|