Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
pijng committed Feb 24, 2025
1 parent 0f359e7 commit d62ae51
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion web/src/pages/action-create/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { h, spec } from "forest";

import { actionCreateRoute } from "@/shared/routing";
import { Header } from "@/shared/ui";
import { NewActionForm } from "@/features/action-create";
import { NewActionForm } from "@/features/actions/action-create";
import { i18n } from "@/shared/lib/i18n";

export const ActionCreatePage = () => {
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/action-edit/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { h, spec } from "forest";

import { actionEditRoute } from "@/shared/routing";
import { Header } from "@/shared/ui";
import { EditActionForm } from "@/features/action-edit";
import { EditActionForm } from "@/features/actions/action-edit";
import { i18n } from "@/shared/lib/i18n";

export const ActionEditPage = () => {
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/notification-profile-create/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { h, spec } from "forest";
import { notificationProfileCreateRoute } from "@/shared/routing";
import { Header } from "@/shared/ui";
import { i18n } from "@/shared/lib/i18n";
import { NewNotificationProfileForm } from "@/features/notification-profile-create";
import { NewNotificationProfileForm } from "@/features/notification-profile/notification-profile-create";

export const NotificationProfileCreatePage = () => {
h("div", () => {
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/notification-profile-edit/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { notificationProfileEditRoute } from "@/shared/routing";

import { i18n } from "@/shared/lib/i18n";
import { Header } from "@/shared/ui";
import { EditNotificationProfileForm } from "@/features/notification-profile-edit";
import { EditNotificationProfileForm } from "@/features/notification-profile/notification-profile-edit";

export const NotificationProfleEditPage = () => {
h("div", () => {
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/user-create/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { h, spec } from "forest";

import { memberCreateRoute } from "@/shared/routing";
import { Header } from "@/shared/ui";
import { NewMemberForm } from "@/features/user-create";
import { NewMemberForm } from "@/features/user/user-create";
import { i18n } from "@/shared/lib/i18n";

export const UserCreatePage = () => {
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/user-edit/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { h, spec } from "forest";

import { memberEditRoute } from "@/shared/routing";
import { Header } from "@/shared/ui";
import { EditMemberForm } from "@/features/user-edit";
import { EditMemberForm } from "@/features/user/user-edit";
import { i18n } from "@/shared/lib/i18n";

export const UserEditPage = () => {
Expand Down
6 changes: 3 additions & 3 deletions web/src/widgets/search-bar/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { logModel } from "@/entities/log";
import { schemaModel } from "@/entities/schema";
import { FilterDate } from "@/features/filter-date-logs";
import { Filter } from "@/features/filter-logs";
import { FilterLevel } from "@/features/filter-level-logs";
import { FilterDate } from "@/features/filters/filter-date-logs";
import { Filter } from "@/features/filters/filter-logs";
import { FilterLevel } from "@/features/filters/filter-level-logs";
import { logsRoute } from "@/shared/routing";
import { i18n } from "@/shared/lib/i18n";
import { Button, Search } from "@/shared/ui";
Expand Down

0 comments on commit d62ae51

Please sign in to comment.