style: fix linting issues met Prettier
This commit is contained in:
parent
0d8a28b203
commit
b3e83850ae
2 changed files with 6 additions and 6 deletions
|
@ -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',
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -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',
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue