Skip to content

Commit

Permalink
Fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
david-szabo97 committed Nov 17, 2020
1 parent 96ff63a commit fc48c5e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Navigation from '..';
import NavigationItem from '../item';
import NavigationMenu from '../menu';

export function HideIFEmptyStory() {
export function HideIfEmptyStory() {
return (
<>
<Navigation className="navigation-story">
Expand Down
4 changes: 2 additions & 2 deletions packages/components/src/navigation/stories/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { GroupStory } from './group';
import { ControlledStateStory } from './controlled-state';
import { SearchStory } from './search';
import { MoreExamplesStory } from './more-examples';
import { HideIFEmptyStory } from './hide-if-empty';
import { HideIfEmptyStory } from './hide-if-empty';
import './style.css';

export default {
Expand All @@ -30,4 +30,4 @@ export const controlledState = () => <ControlledStateStory />;
export const groups = () => <GroupStory />;
export const search = () => <SearchStory />;
export const moreExamples = () => <MoreExamplesStory />;
export const hideIfEmpty = () => <HideIFEmptyStory />;
export const hideIfEmpty = () => <HideIfEmptyStory />;

0 comments on commit fc48c5e

Please sign in to comment.