Fix formatting.

This commit is contained in:
Jade Welton
2026-05-21 12:09:01 -07:00
parent 2527e4bd85
commit bf71a6131a
+1 -5
View File
@@ -314,11 +314,7 @@ const getReactTabContent = (activeReactTab: ReactTabKind, explorer: Explorer): J
return <SplashScreen explorer={explorer} />;
}
case ReactTabKind.Quickstart:
return userContext.apiType === "VCoreMongo" ? (
<VcoreMongoQuickstartTab />
) : (
<QuickstartTab explorer={explorer} />
);
return userContext.apiType === "VCoreMongo" ? <VcoreMongoQuickstartTab /> : <QuickstartTab explorer={explorer} />;
default:
throw new Error(`Unsupported tab kind ${ReactTabKind[activeReactTab]}`);
}