removing public decorator in api

This commit is contained in:
2025-03-15 09:34:59 -05:00
parent d788ace47f
commit ac1efac129
4 changed files with 6 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "api",
"version": "1.0.0",
"version": "1.1.0",
"description": "",
"author": "",
"private": true,

View File

@@ -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';

View File

@@ -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 });

View File

@@ -0,0 +1,3 @@
body {
background-color: #f2f2f2;
}