Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: saumeya <saumeyakatyal@gmail.com>
  • Loading branch information
saumeya committed May 24, 2023
1 parent c9d3e68 commit 2466168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/shared/components/layout/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface LayoutProps {
isExtension?: boolean;
}

const getBGColor = (theme: string): string => theme === 'light' ? '#dee6eb' : '#100f0f';
const getBGColor = (theme: string): string => (theme === 'light' ? '#dee6eb' : '#100f0f');

export const Layout = (props: LayoutProps) => (
<div className={props.pref.theme ? 'theme-' + props.pref.theme : 'theme-light'}>
Expand Down

0 comments on commit 2466168

Please sign in to comment.