Skip to content

Commit

Permalink
💚 Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
mit-27 committed Apr 25, 2024
1 parent 8f1e49b commit 4c635e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/client-ts/src/state/projectsStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ export interface Project {
id_project: string;
name: string;
sync_mode: string;
pull_frequency: string;
redirect_url?: string;
pull_frequency?: bigint | null;
redirect_url?: string | null;
id_user: string;
}

Expand Down
2 changes: 0 additions & 2 deletions packages/api/src/@core/projects/projects.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ export class ProjectsService {
id_user: id_user,
},
});


}

return await this.prisma.projects.findMany({
Expand Down

0 comments on commit 4c635e6

Please sign in to comment.