Skip to content

Commit f2ed0c6

Browse files
committed
remove specialized cli auth
1 parent ca67cd4 commit f2ed0c6

File tree

4 files changed

+0
-585
lines changed

4 files changed

+0
-585
lines changed

src/App.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import Terms from './pages/Terms';
66
import Privacy from './pages/Privacy';
77
import LearnMore from './pages/LearnMore';
88
import Pricing from './pages/Pricing';
9-
import CliAuth from './pages/CliAuth/CliAuth';
109
import {AuthProvider, useAuth} from './contexts/AuthContext';
1110

1211
const AppContent: React.FC = () => {
@@ -28,8 +27,6 @@ const AppContent: React.FC = () => {
2827
setCurrentPage('learn-more');
2928
} else if (hash === 'pricing') {
3029
setCurrentPage('pricing');
31-
} else if (hash === 'cli-auth') {
32-
setCurrentPage('cli-auth');
3330
} else if (hash === 'welcome') {
3431
setCurrentPage('welcome');
3532
} else {
@@ -156,10 +153,6 @@ const AppContent: React.FC = () => {
156153
return <Pricing/>;
157154
}
158155

159-
if (currentPage === 'cli-auth') {
160-
return <CliAuth/>;
161-
}
162-
163156
return <Welcome/>;
164157
};
165158

src/pages/CliAuth/CliAuth.css

Lines changed: 0 additions & 315 deletions
This file was deleted.

0 commit comments

Comments
 (0)