From bbdda82d9db34a46061c3397cdbe4a6c40b30edc Mon Sep 17 00:00:00 2001 From: noahspannbauer Date: Sat, 15 Mar 2025 09:10:27 -0500 Subject: [PATCH] Bug/10 remove pubic decorator in api (#12) * removing public decorator in api * removing public decorator in api --- api/src/app.module.ts | 4 ++-- app/src/components/projectForm/ProjectForm.tsx | 1 - app/src/index.css | 3 +++ 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/api/src/app.module.ts b/api/src/app.module.ts index 480c810..7755d99 100644 --- a/api/src/app.module.ts +++ b/api/src/app.module.ts @@ -1,8 +1,8 @@ import { Module } from '@nestjs/common'; -import { APP_FILTER, APP_GUARD, Reflector } from '@nestjs/core'; +import { APP_FILTER } from '@nestjs/core'; import { HttpExceptionFilter } from './filters/http-exception.filter'; import { ProjectModule } from './project/project.module'; -import { AuthGuard, AuthModule, UserModule } from '@noahspan/noahspan-modules' +import { AuthModule, UserModule } from '@noahspan/noahspan-modules' import { ConfigModule, ConfigService } from '@nestjs/config'; import configuration from './config/configuration'; diff --git a/app/src/components/projectForm/ProjectForm.tsx b/app/src/components/projectForm/ProjectForm.tsx index 5977fb6..dc4cd4b 100644 --- a/app/src/components/projectForm/ProjectForm.tsx +++ b/app/src/components/projectForm/ProjectForm.tsx @@ -47,7 +47,6 @@ const ProjectForm = ({ isDrawerOpen, mode, onOpenClose, projectId }: ProjectForm }; const onSubmit = async (data: unknown) => { - console.log(data) try { dispatch({ type: 'SET_IS_LOADING', payload: true }); diff --git a/app/src/index.css b/app/src/index.css index e69de29..05ebb04 100644 --- a/app/src/index.css +++ b/app/src/index.css @@ -0,0 +1,3 @@ +body { + background-color: #f2f2f2; +} \ No newline at end of file