Skip to content

Commit

Permalink
making vercel happy
Browse files Browse the repository at this point in the history
  • Loading branch information
murtagh27 committed Sep 23, 2024
1 parent 8d9ce9c commit 4dd24ea
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions apps/backend/src/events/events.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ export class EventsService {
async create(data: CreateEventDto, userId: string): Promise<Event> {
const { drinkActions, ...eventData } = data;
try {
console.log('eventData:', eventData);
console.log('drinkActions:', drinkActions);
console.log('userId:', userId);
return await this.prisma.event.create({
data: {
...eventData,
Expand Down
1 change: 0 additions & 1 deletion apps/frontend/src/app/events/new/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ const formSchema = z.object({
});

async function onSubmit(event: React.FormEvent, values: z.infer<typeof formSchema>) {
console.log('Á');
event.preventDefault();
try {
const response = await axiosConfig.post('/events', values);
Expand Down

0 comments on commit 4dd24ea

Please sign in to comment.