mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Fix unused parameters naming
This commit is contained in:
parent
e1060b4abd
commit
dd80dc764c
@ -62,7 +62,7 @@ export const minimisedUserQuery = () => {
|
|||||||
`
|
`
|
||||||
}
|
}
|
||||||
|
|
||||||
export const notificationQuery = (i18n) => {
|
export const notificationQuery = (_i18n) => {
|
||||||
return gql`
|
return gql`
|
||||||
${userFragment}
|
${userFragment}
|
||||||
${commentFragment}
|
${commentFragment}
|
||||||
@ -101,7 +101,7 @@ export const notificationQuery = (i18n) => {
|
|||||||
`
|
`
|
||||||
}
|
}
|
||||||
|
|
||||||
export const markAsReadMutation = (i18n) => {
|
export const markAsReadMutation = (_i18n) => {
|
||||||
return gql`
|
return gql`
|
||||||
${userFragment}
|
${userFragment}
|
||||||
${commentFragment}
|
${commentFragment}
|
||||||
@ -137,7 +137,7 @@ export const markAsReadMutation = (i18n) => {
|
|||||||
`
|
`
|
||||||
}
|
}
|
||||||
|
|
||||||
export const markAllAsReadMutation = (i18n) => {
|
export const markAllAsReadMutation = (_i18n) => {
|
||||||
return gql`
|
return gql`
|
||||||
${userFragment}
|
${userFragment}
|
||||||
${commentFragment}
|
${commentFragment}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user