Feature/4 pilots add #20

Merged
noahspannbauer merged 64 commits from feature/4-pilots---add into main 2024-09-23 21:52:59 -04:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit daa1aeb8d2 - Show all commits

View File

@@ -86,14 +86,14 @@ const App: React.FC<unknown> = () => {
}, []);
return (
<>
<div className="container mx-auto">
<SiteNav handleSignIn={handleSignIn} handleSignOut={handleSignOut} />
<Routes>
{useFeatureFlag('flying-pilots')?.enabled && (
<Route path="/" element={<Pilots />} />
)}
</Routes>
</>
</div>
);
};

View File

@@ -16,7 +16,7 @@ const Pilots: React.FC<unknown> = () => {
const [date, setDate] = useState();
return (
<Card className="pt-10">
<Card className="mt-6">
<div className="px-6">
<Typography variant="h3">Pilots</Typography>
<Button