Skip to content

Commit

Permalink
Fix import path for helper functions
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamindehli committed Feb 20, 2024
1 parent 87bdd18 commit 7f334bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/stories/ErrorBox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PropTypes from "prop-types";

// Functions
import { getThemePaletteBackgroundColor } from "../functions/theme";
import { classNameArrayToClassNameString } from "functions/helpers";
import { classNameArrayToClassNameString } from "../functions/helpers";

// Stylesheets
import style from "./ErrorBox.module.scss";
Expand Down
2 changes: 1 addition & 1 deletion src/stories/NavigationBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import logo from "../assets/svg/dibk-logo.svg?url";

// Stylesheets
import style from "./NavigationBar.module.scss";
import { classNameArrayToClassNameString } from "functions/helpers";
import { classNameArrayToClassNameString } from "../functions/helpers";

const NavigationBar = (props) => {
// State
Expand Down

0 comments on commit 7f334bd

Please sign in to comment.