Skip to content

Commit

Permalink
refactor(typo): 🎉 fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Apr 4, 2024
1 parent 7a30d60 commit b49a206
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions apis/namespace.api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import { INamespace, INamespaceBE } from "@/interfaces/namespace.interface";
import { kubernetesApi } from "./openapi";
import { namespacesMapper } from "@/handlers/namespace.handler";

export function createNamespaceAPI(values: {
orgId: string;
regionName: string;
Expand Down
2 changes: 1 addition & 1 deletion app/applications/[appName]/jupyter-notebook/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import JupyterNotebook from "@/components/JupyterNotebook/JupyterNotebook";
import { Fragment, ReactElement } from "react";

export default function CodeEditor(): ReactElement {
export default function JupyterNotebookPage(): ReactElement {
return (
<Fragment>
<JupyterNotebook />
Expand Down
2 changes: 1 addition & 1 deletion contexts/MainContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default ({ children }: IMainContext) => {
useEffect(() => {
const timer = setInterval(() => {
selectedState?.namespace?.name && handleGetApplications();
}, 5000);
}, 10000);

return () => clearInterval(timer);

Expand Down
4 changes: 4 additions & 0 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,7 @@
.service-button .p-button-label {
@apply w-40 text-xs;
}

.p-inputswitch.p-highlight .p-inputswitch-slider {
background: #ac2dfe !important;
}

0 comments on commit b49a206

Please sign in to comment.