Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.

Commit 4fb5cc9

Browse files
fix: turned imports from absolute to relative
1 parent 3e408b0 commit 4fb5cc9

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/renderer/components/ViewCookbookSnippets/ViewCookbookSnippetsEmpty.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Flex, Link } from '@chakra-ui/react';
22
import { EmptyState } from '@codiga/components';
33
import { useParams } from 'react-router-dom';
4-
import { APP_URL } from 'renderer/lib/config';
4+
import { APP_URL } from '../../lib/config';
55

66
export default function ViewCookbookSnippetsEmpty() {
77
const params = useParams();

src/renderer/components/ViewCookbookSnippets/ViewCookbookSnippetsError.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Flex, Link } from '@chakra-ui/react';
22
import { EmptyState } from '@codiga/components';
33
import { Link as RouterLink } from 'react-router-dom';
4-
import { APP_URL } from 'renderer/lib/config';
4+
import { APP_URL } from '../../lib/config';
55

66
export default function ViewCookbookSnippetsError() {
77
return (

src/renderer/components/ViewSnippet/ViewSnippetError.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Flex, Link } from '@chakra-ui/react';
22
import { EmptyState } from '@codiga/components';
3-
import { APP_URL } from 'renderer/lib/config';
3+
import { APP_URL } from '../../lib/config';
44

55
export default function ViewSnippetError() {
66
return (

src/renderer/graphql/mutations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { gql } from '@apollo/client';
2-
import { UserPreferenceKeyType } from 'renderer/types/userTypes';
2+
import { UserPreferenceKeyType } from '../types/userTypes';
33

44
export type RemoveUserPreferenceVariables = {
55
key: UserPreferenceKeyType;

src/renderer/graphql/queries.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
AssistantRecipeWithStats,
44
LanguageEnumeration,
55
LibraryWithAllEnumeration,
6-
} from 'renderer/types/assistantTypes';
6+
} from '../types/assistantTypes';
77

88
export const CHECK_USER = gql`
99
query checkUser {

src/renderer/lib/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { RecipeVariableType } from 'renderer/types/assistantTypes';
1+
import { RecipeVariableType } from '../types/assistantTypes';
22

33
export enum Language {
44
LANGUAGE_UNKNOWN = 'Unknown',

0 commit comments

Comments
 (0)