-
- 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.
-
-
- {{ errorMessage }}
-
+
+ Processing...
+
+
+ You need to log in or create an account
+
+
+
+ An error occurred while accepting the request.
\ No newline at end of file
diff --git a/app/types/invitation-status.ts b/app/types/invitation-status.ts
deleted file mode 100644
index 496e463..0000000
--- a/app/types/invitation-status.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-export enum InviteStatusEnum {
- PENDING = "pending",
- ACCEPTED = "accepted",
- DECLINED = "declined",
- NOT_FOUND = "not_found",
- FAILED = "failed",
-}
-
-export type InviteStatus = {
- message: string
- status: InviteStatusEnum
-}
-