Skip to content

Commit 7153a84

Browse files
committed
chore: small imports fix
1 parent d26ef8b commit 7153a84

File tree

2 files changed

+4
-4
lines changed
  • web/src
    • layout/Header/navbar/Menu/Settings/Notifications/FormContactDetails
    • utils

2 files changed

+4
-4
lines changed

web/src/layout/Header/navbar/Menu/Settings/Notifications/FormContactDetails/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { useWalletClient, useAccount } from "wagmi";
44
import { Button } from "@kleros/ui-components-library";
55
import { uploadSettingsToSupabase } from "utils/uploadSettingsToSupabase";
66
import FormContact from "./FormContact";
7-
import messages from "../../../../../../../consts/eip712-messages";
8-
import { EMAIL_REGEX, TELEGRAM_REGEX } from "../../../../../../../consts/index";
9-
import { ISettings } from "../../../index";
7+
import messages from "src/consts/eip712-messages";
8+
import { EMAIL_REGEX, TELEGRAM_REGEX } from "consts/index";
9+
import { ISettings } from "../../../../index";
1010
import { responsiveSize } from "styles/responsiveSize";
1111

1212
const FormContainer = styled.form`

web/src/utils/sentry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from "react";
22
import * as Sentry from "@sentry/react";
33
import { Routes, createRoutesFromChildren, matchRoutes, useLocation, useNavigationType } from "react-router-dom";
4-
import { GIT_DIRTY, GIT_HASH, RELEASE_VERSION } from "../consts";
4+
import { GIT_DIRTY, GIT_HASH, RELEASE_VERSION } from "consts/index";
55

66
Sentry.init({
77
dsn: process.env.REACT_APP_SENTRY_ENDPOINT,

0 commit comments

Comments
 (0)