style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-05-13 07:22:24 +00:00
parent 0d8a28b203
commit b3e83850ae
2 changed files with 6 additions and 6 deletions

View file

@ -10,7 +10,7 @@ function createRequestObject(
classid: string,
assignmentid: string
): {
query: {full: string},
query: { full: string };
params: { classid: string; id: string };
} {
return {
@ -19,8 +19,8 @@ function createRequestObject(
id: assignmentid,
},
query: {
full: 'true'
}
full: 'true',
},
};
}

View file

@ -18,7 +18,7 @@ function createRequestObject(
assignmentid: string,
groupNumber: string
): {
query: { full: string }
query: { full: string };
params: { classid: string; groupid: string; assignmentid: string };
} {
return {
@ -28,8 +28,8 @@ function createRequestObject(
groupid: groupNumber,
},
query: {
full: 'true'
}
full: 'true',
},
};
}