+
+ Checking your invitation...
+
+
+ You'll need to log in or
+ create an account to view this list.
+ If you're creating a new account, be sure to use the email address where you received this invitation.
+
-
- Processing...
-
-
- You need to log in or create an account
-
-
-
-
An error occurred while accepting the request.
+
+ {{ errorMessage }}
+
\ No newline at end of file
diff --git a/app/types/invitation-status.ts b/app/types/invitation-status.ts
new file mode 100644
index 0000000..496e463
--- /dev/null
+++ b/app/types/invitation-status.ts
@@ -0,0 +1,13 @@
+export enum InviteStatusEnum {
+ PENDING = "pending",
+ ACCEPTED = "accepted",
+ DECLINED = "declined",
+ NOT_FOUND = "not_found",
+ FAILED = "failed",
+}
+
+export type InviteStatus = {
+ message: string
+ status: InviteStatusEnum
+}
+