aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/AuthLayoutContainer.tsx
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-07-04 12:51:44 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-07-04 13:08:32 +0530
commit91cc78009cf57ad8f53e69d20aa974f4833e61b0 (patch)
tree10a4e397734d7ac1c70dd9acbe86108a5344ed7f /src/containers/auth/AuthLayoutContainer.tsx
parentDisable symlinks to build_id for rpm (diff)
downloadferdium-app-91cc78009cf57ad8f53e69d20aa974f4833e61b0.tar.gz
ferdium-app-91cc78009cf57ad8f53e69d20aa974f4833e61b0.tar.zst
ferdium-app-91cc78009cf57ad8f53e69d20aa974f4833e61b0.zip
chore: Use relative paths while importing from custom code
Diffstat (limited to 'src/containers/auth/AuthLayoutContainer.tsx')
-rw-r--r--src/containers/auth/AuthLayoutContainer.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/containers/auth/AuthLayoutContainer.tsx b/src/containers/auth/AuthLayoutContainer.tsx
index abe3905e0..1f2753a66 100644
--- a/src/containers/auth/AuthLayoutContainer.tsx
+++ b/src/containers/auth/AuthLayoutContainer.tsx
@@ -2,8 +2,8 @@ import { Component, ReactElement, ReactNode } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3import { ThemeProvider } from 'react-jss'; 3import { ThemeProvider } from 'react-jss';
4 4
5import { StoresProps } from 'src/@types/ferdium-components.types';
6import { Location } from 'mobx-react-router'; 5import { Location } from 'mobx-react-router';
6import { StoresProps } from '../../@types/ferdium-components.types';
7import AuthLayout from '../../components/auth/AuthLayout'; 7import AuthLayout from '../../components/auth/AuthLayout';
8import AppLoader from '../../components/ui/AppLoader'; 8import AppLoader from '../../components/ui/AppLoader';
9 9