Skip to content

Commit

Permalink
fix for failed checks on buildkite #1
Browse files Browse the repository at this point in the history
  • Loading branch information
animehart committed Mar 24, 2022
1 parent 07b4422 commit 5532ea8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const useStyles = ({ height = 500 }: StylesDeps) => {
const { euiTheme } = useEuiTheme();

const cached = useMemo(() => {
const { border, colors } = euiTheme;
const { border } = euiTheme;

const processTree: CSSObject = {
height: `${height}px`,
Expand All @@ -44,8 +44,8 @@ export const useStyles = ({ height = 500 }: StylesDeps) => {
};

const sessionViewerComponent: CSSObject = {
border: euiTheme.border.thin,
borderRadius: euiTheme.border.radius.medium,
border: border.thin,
borderRadius: border.radius.medium,
};

const toolBar: CSSObject = {
Expand Down

0 comments on commit 5532ea8

Please sign in to comment.