add pilot

This commit is contained in:
2024-07-05 06:34:01 -05:00
parent 61c06d83a4
commit b269cbba29

View File

@@ -88,9 +88,9 @@ const App: React.FC<unknown> = () => {
<>
<SiteNav handleSignIn={handleSignIn} handleSignOut={handleSignOut} />
<Routes>
{/* {useFeatureFlag('flying-pilots')?.enabled && ( */}
<Route path="/" element={<Pilots />} />
{/* )} */}
{useFeatureFlag('flying-pilots')?.enabled && (
<Route path="/" element={<Pilots />} />
)}
</Routes>
</>
);