Skip to content

Commit 1e260bd

Browse files
committed
fix formatting
1 parent bfee0dc commit 1e260bd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

workspaces/frontend/src/app/App.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ import {
1616
} from '@patternfly/react-core';
1717
import { BarsIcon } from '@patternfly/react-icons';
1818
import NamespaceSelector from '~/shared/components/NamespaceSelector';
19+
import logoDarkTheme from '~/images/logo-dark-theme.svg';
1920
import { NamespaceContextProvider } from './context/NamespaceContextProvider';
2021
import AppRoutes from './AppRoutes';
2122
import NavSidebar from './NavSidebar';
2223
import { NotebookContextProvider } from './context/NotebookContext';
2324
import { isMUITheme, Theme } from './const';
24-
import logoDarkTheme from '~/images/logo-dark-theme.svg';
2525

2626
const App: React.FC = () => {
2727
React.useEffect(() => {

workspaces/frontend/src/app/NavSidebar.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
PageSidebarBody,
1111
} from '@patternfly/react-core';
1212
import { useNavData, isNavDataGroup, NavDataHref, NavDataGroup } from './AppRoutes';
13-
import { isMUITheme, LOGO_LIGHT } from "./const";
13+
import { isMUITheme, LOGO_LIGHT } from './const';
1414

1515
const NavHref: React.FC<{ item: NavDataHref }> = ({ item }) => (
1616
<NavItem key={item.label} data-id={item.label} itemId={item.label}>
@@ -75,4 +75,4 @@ const NavSidebar: React.FC = () => {
7575
);
7676
};
7777

78-
export default NavSidebar;
78+
export default NavSidebar;

0 commit comments

Comments
 (0)