Skip to content

Commit

Permalink
chore: update files with absolute paths
Browse files Browse the repository at this point in the history
  • Loading branch information
mariaozamiz committed Jan 31, 2024
1 parent 966cd9b commit 3071b42
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/webapp/pages/analysis/AnalysisPage.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import i18n from "../../../utils/i18n";
import { PageHeader } from "../../components/page-header/PageHeader";
import { Wizard } from "@eyeseetea/d2-ui-components";
import { PageHeader } from "$/webapp/components/page-header/PageHeader";
import i18n from "$/utils/i18n";
import { steps } from "./steps";

type PageProps = {
Expand Down
2 changes: 1 addition & 1 deletion src/webapp/pages/analysis/steps/ConfigurationStep.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import i18n from "../../../../utils/i18n";
import i18n from "$/utils/i18n";

interface PageProps {
name: string;
Expand Down
2 changes: 1 addition & 1 deletion src/webapp/pages/analysis/steps/DensityStep.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import i18n from "../../../../utils/i18n";
import i18n from "$/utils/i18n";

interface PageProps {
name: string;
Expand Down
2 changes: 1 addition & 1 deletion src/webapp/pages/analysis/steps/DisaggregatesStep.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import i18n from "../../../../utils/i18n";
import i18n from "$/utils/i18n";

interface PageProps {
name: string;
Expand Down
2 changes: 1 addition & 1 deletion src/webapp/pages/analysis/steps/DoctorsStep.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import i18n from "../../../../utils/i18n";
import i18n from "$/utils/i18n";

interface PageProps {
name: string;
Expand Down
2 changes: 1 addition & 1 deletion src/webapp/pages/analysis/steps/MidwiferyStep.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import i18n from "../../../../utils/i18n";
import i18n from "$/utils/i18n";

interface PageProps {
name: string;
Expand Down
2 changes: 1 addition & 1 deletion src/webapp/pages/analysis/steps/NursingMidwiferyStep.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import i18n from "../../../../utils/i18n";
import i18n from "$/utils/i18n";

export const NursingMidwiferyStep: React.FC<PageProps> = React.memo(props => {
const { name = "Missing nursing personnel when midwifery personnel is present" } = props;
Expand Down
2 changes: 1 addition & 1 deletion src/webapp/pages/analysis/steps/NursingStep.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import i18n from "../../../../utils/i18n";
import i18n from "$/utils/i18n";

interface PageProps {
name: string;
Expand Down
2 changes: 1 addition & 1 deletion src/webapp/pages/analysis/steps/OtherStep.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import i18n from "../../../../utils/i18n";
import i18n from "$/utils/i18n";

interface PageProps {
name: string;
Expand Down
2 changes: 1 addition & 1 deletion src/webapp/pages/analysis/steps/OutliersStep.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import i18n from "../../../../utils/i18n";
import i18n from "$/utils/i18n";

interface PageProps {
name: string;
Expand Down
2 changes: 1 addition & 1 deletion src/webapp/pages/analysis/steps/TrendsStep.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import i18n from "../../../../utils/i18n";
import i18n from "$/utils/i18n";

interface PageProps {
name: string;
Expand Down

0 comments on commit 3071b42

Please sign in to comment.