From 933f103dc6b3ec56d2e694405123a3ee7bdafe20 Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com> Date: Thu, 6 Nov 2025 12:39:55 +0000 Subject: [PATCH] @app --- docker/Dockerfile.unified | 2 +- frontend/src/proprietary/App.tsx | 2 +- .../components/shared/config/configSections/PeopleSection.tsx | 2 +- .../shared/config/configSections/TeamDetailsSection.tsx | 2 +- .../components/shared/config/configSections/TeamsSection.tsx | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docker/Dockerfile.unified b/docker/Dockerfile.unified index 0f1c31cf8..cf7a051a2 100644 --- a/docker/Dockerfile.unified +++ b/docker/Dockerfile.unified @@ -10,7 +10,7 @@ COPY frontend/package.json frontend/package-lock.json ./ RUN npm ci COPY frontend . -RUN npm run build +RUN DISABLE_ADDITIONAL_FEATURES=false npm run build # Stage 2: Build Backend FROM gradle:8.14-jdk21 AS backend-build diff --git a/frontend/src/proprietary/App.tsx b/frontend/src/proprietary/App.tsx index 046555e1b..eba2fa5c4 100644 --- a/frontend/src/proprietary/App.tsx +++ b/frontend/src/proprietary/App.tsx @@ -6,7 +6,7 @@ import Landing from "@app/routes/Landing"; import Login from "@app/routes/Login"; import Signup from "@app/routes/Signup"; import AuthCallback from "@app/routes/AuthCallback"; -import InviteAccept from "@proprietary/routes/InviteAccept"; +import InviteAccept from "@app/routes/InviteAccept"; import OnboardingTour from "@app/components/onboarding/OnboardingTour"; // Import global styles diff --git a/frontend/src/proprietary/components/shared/config/configSections/PeopleSection.tsx b/frontend/src/proprietary/components/shared/config/configSections/PeopleSection.tsx index fa870a371..b059dd990 100644 --- a/frontend/src/proprietary/components/shared/config/configSections/PeopleSection.tsx +++ b/frontend/src/proprietary/components/shared/config/configSections/PeopleSection.tsx @@ -25,7 +25,7 @@ import { import LocalIcon from '@app/components/shared/LocalIcon'; import { alert } from '@app/components/toast'; import { userManagementService, User } from '@app/services/userManagementService'; -import { teamService, Team } from '@proprietary/services/teamService'; +import { teamService, Team } from '@app/services/teamService'; import { Z_INDEX_OVER_CONFIG_MODAL } from '@app/styles/zIndex'; import { useAppConfig } from '@app/contexts/AppConfigContext'; diff --git a/frontend/src/proprietary/components/shared/config/configSections/TeamDetailsSection.tsx b/frontend/src/proprietary/components/shared/config/configSections/TeamDetailsSection.tsx index 74eaddf85..bab77723e 100644 --- a/frontend/src/proprietary/components/shared/config/configSections/TeamDetailsSection.tsx +++ b/frontend/src/proprietary/components/shared/config/configSections/TeamDetailsSection.tsx @@ -19,7 +19,7 @@ import { } from '@mantine/core'; import LocalIcon from '@app/components/shared/LocalIcon'; import { alert } from '@app/components/toast'; -import { teamService, Team } from '@proprietary/services/teamService'; +import { teamService, Team } from '@app/services/teamService'; import { User, userManagementService } from '@app/services/userManagementService'; import { Z_INDEX_OVER_CONFIG_MODAL } from '@app/styles/zIndex'; diff --git a/frontend/src/proprietary/components/shared/config/configSections/TeamsSection.tsx b/frontend/src/proprietary/components/shared/config/configSections/TeamsSection.tsx index 7b1a87294..830370a4f 100644 --- a/frontend/src/proprietary/components/shared/config/configSections/TeamsSection.tsx +++ b/frontend/src/proprietary/components/shared/config/configSections/TeamsSection.tsx @@ -18,10 +18,10 @@ import { } from '@mantine/core'; import LocalIcon from '@app/components/shared/LocalIcon'; import { alert } from '@app/components/toast'; -import { teamService, Team } from '@proprietary/services/teamService'; +import { teamService, Team } from '@app/services/teamService'; import { userManagementService, User } from '@app/services/userManagementService'; import { Z_INDEX_OVER_CONFIG_MODAL } from '@app/styles/zIndex'; -import TeamDetailsSection from '@proprietary/components/shared/config/configSections/TeamDetailsSection'; +import TeamDetailsSection from '@app/components/shared/config/configSections/TeamDetailsSection'; export default function TeamsSection() { const { t } = useTranslation();