From 15aa9ab0f91578f94058b1faac3c8b81fef9f757 Mon Sep 17 00:00:00 2001 From: Allan Lasser Date: Fri, 27 Oct 2023 12:19:59 -0400 Subject: [PATCH] Updates IndividualOrg plan with more specific type --- src/pages/app/AccountNavigation/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/app/AccountNavigation/types.ts b/src/pages/app/AccountNavigation/types.ts index 7f99b6fb5..14fa30457 100644 --- a/src/pages/app/AccountNavigation/types.ts +++ b/src/pages/app/AccountNavigation/types.ts @@ -15,6 +15,7 @@ export interface Org { export interface IndividualOrg extends Org { individual: true; + plan: "Free" | "Professional"; } export interface User {