Skip to content

Commit 194d4b3

Browse files
committed
mutation formatting fix
1 parent 65c58fa commit 194d4b3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

frontend/src/gql/mutations.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,11 @@ export const UPDATE_ASSIGNED_TASK = gql`
369369
`;
370370

371371
export const CREATE_REPORT_RECIPIENT = gql`
372-
mutation createReportRecipient($email: String!, $weekly: Boolean!, $monthly: Boolean!) {
372+
mutation createReportRecipient(
373+
$email: String!
374+
$weekly: Boolean!
375+
$monthly: Boolean!
376+
) {
373377
createReportRecipient(email: $email, weekly: $weekly, monthly: $monthly)
374378
}
375379
`;

0 commit comments

Comments
 (0)