Skip to content

Commit

Permalink
chore: fix outdated import (#6069)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas742 authored Jul 11, 2024
1 parent c4a49e4 commit c9fb4aa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { useState } from 'react';
import { FlexBox } from '../../components/FlexBox/index.js';
import { Toolbar } from '../../components/Toolbar/index.js';
import { ToolbarSpacer } from '../../components/ToolbarSpacer/index.js';
import { FlexBoxDirection, ToolbarDesign } from '../../enums/index.js';
import { FlexBoxDirection } from '../../enums/index.js';
import { Text } from '../../webComponents/Text/index.js';
import { Avatar } from '../Avatar/index.js';
import { Button } from '../Button/index.js';
Expand Down Expand Up @@ -338,7 +338,7 @@ export const WithDifferentColumns: Story = {
}
midColumn={
<>
<Toolbar design={ToolbarDesign.Solid}>
<Toolbar design="Solid">
<Title>{selectedMovie.movie}</Title>
<ToolbarSpacer />
<Button
Expand Down Expand Up @@ -378,7 +378,7 @@ export const WithDifferentColumns: Story = {
}
endColumn={
<>
<Toolbar design={ToolbarDesign.Solid}>
<Toolbar design="Solid">
<Title>{selectedCast.name}</Title>
<ToolbarSpacer />
<Button
Expand Down

0 comments on commit c9fb4aa

Please sign in to comment.