Skip to content

Commit

Permalink
style: format code with Prettier
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in 9124d3d according to the output
from Prettier.

Details: None
  • Loading branch information
deepsource-autofix[bot] committed Dec 9, 2023
1 parent 9124d3d commit ff34c1e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ const HelpCenter = React.lazy(() => import("./pages/FooterPages/HelpCenter"));
const Notifications = React.lazy(() => import("./components/Notification"));
const SideBar = React.lazy(() => import("./components/SideBar"));
const Navbar = React.lazy(() => import("./components/Navbar"));
const DeleteAccount = React.lazy(() =>
import("./components/SettingsComponents/DeleteAccount"),
const DeleteAccount = React.lazy(
() => import("./components/SettingsComponents/DeleteAccount"),
);
const SettingsSidebar = React.lazy(() =>
import("./components/SettingsComponents/Sidebar"),
const SettingsSidebar = React.lazy(
() => import("./components/SettingsComponents/Sidebar"),
);
const SoundSetting = React.lazy(() =>
import("./components/SettingsComponents/Sounds"),
const SoundSetting = React.lazy(
() => import("./components/SettingsComponents/Sounds"),
);

export function getModalStyle() {
Expand Down

0 comments on commit ff34c1e

Please sign in to comment.