Skip to content

Commit

Permalink
Remove Logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Peyton-McKee committed Jan 21, 2025
1 parent 24037ec commit b5bc279
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/backend/src/controllers/statistics.controllers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ export default class StatisticsController {
static async removeGraphFromGraphCollection(req: Request, res: Response, next: NextFunction) {
try {
const { graphCollectionId, graphId } = req.params;
console.log('test');
const message: { message: string } = await StatisticsService.removeGraphFromCollection(
req.currentUser,
graphCollectionId,
Expand Down
2 changes: 0 additions & 2 deletions src/backend/src/services/statistics.services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -502,8 +502,6 @@ export default class StatisticsService {
throw new DeletedException('Graph Collection', graphCollectionId);
}

console.log('test');

await prisma.graph.update({
where: { id: graphId },
data: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ const TeamTypeTable: React.FC = () => {
};

const teamTypesTableRows = teamTypes.map((teamType) => {
console.log('teamType', teamType);
return (
<TableRow>
<TableCell onClick={() => setEditingTeamType(teamType)} sx={{ cursor: 'pointer', border: '2px solid black' }}>
Expand Down
1 change: 0 additions & 1 deletion src/frontend/src/pages/LoginPage/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ const Login = () => {
};

const verifyLogin = async (response: CredentialResponse) => {
console.log(response);
if (!response.credential) {
throw new Error('Failed to get credentials');
}
Expand Down

0 comments on commit b5bc279

Please sign in to comment.