Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement /credentials/shop/manage as flask view #13422

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
38 changes: 0 additions & 38 deletions static/js/src/advantage/credentials/api/keys.js

This file was deleted.

9 changes: 2 additions & 7 deletions static/js/src/advantage/credentials/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ import * as Sentry from "@sentry/react";
import { QueryClient, QueryClientProvider } from "react-query";
import { Integrations } from "@sentry/tracing";
import { ReactQueryDevtools } from "react-query/devtools";
import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
import CredManage from "./components/CredManage";
import CredExamShop from "./components/CredExamShop/CredExamShop";
import { BrowserRouter as Router, Routes } from "react-router-dom";

const oneHour = 1000 * 60 * 60;
const queryClient = new QueryClient({
Expand Down Expand Up @@ -36,10 +34,7 @@ function App() {
<Sentry.ErrorBoundary>
<QueryClientProvider client={queryClient}>
<Router basename="/credentials/shop">
<Routes>
<Route path="/" element={<CredExamShop />} />
<Route path="/manage" element={<CredManage />} />
</Routes>
<Routes></Routes>
</Router>
<ReactQueryDevtools initialIsOpen={false} />
</QueryClientProvider>
Expand Down

This file was deleted.

This file was deleted.

Loading
Loading