Skip to content

Commit

Permalink
chore: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
bacali95 committed Nov 3, 2024
1 parent 2a0d090 commit 5164317
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/client/src/core/components/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { FormProvider, SubmitHandler, useForm } from 'react-hook-form';
import { Navigate, useNavigate, useSearchParams } from 'react-router-dom';
import { Button, Card, Flex, FormInputs } from 'tw-react-components';

import { version } from '../../../package.json';
import { version } from '../../../../../package.json';
import { useAuthContext } from '../contexts';
import { request } from '../utils';

Expand Down
4 changes: 2 additions & 2 deletions apps/server/src/config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as dotenv from 'dotenv';

import { version } from '../package.json';
import { version } from '../../../package.json';

dotenv.config();

Expand All @@ -20,7 +20,7 @@ export const config = {
directoryPath: process.env['SYSTEM_STORAGE_DIRECTORY_PATH'],
},
google: {
enabled: process.env['GOOGLE_STORAGE_ENABLED'] === 'true' ?? false,
enabled: process.env['GOOGLE_STORAGE_ENABLED'] === 'true',
googleProjectId: process.env['GOOGLE_STORAGE_PROJECT_ID'],
bucketName: process.env['GOOGLE_STORAGE_BUCKET_NAME'] ?? '',
},
Expand Down

0 comments on commit 5164317

Please sign in to comment.