Skip to content

Commit 83335e2

Browse files
committed
update organisations to organizations in the query
1 parent 0718ae8 commit 83335e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/[locale]/dashboard/[entityType]/[entitySlug]/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { graphql } from '@/gql';
22

33
export const getOrgDetailsQryDoc: any = graphql(`
44
query getOrgDetailsQry($filters: OrganizationFilter) {
5-
organisations(filters: $filters) {
5+
organizations(filters: $filters) {
66
id
77
name
88
logo {

app/[locale]/dashboard/[entityType]/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { graphql } from '@/gql';
22

33
export const allOrganizationsListingDoc: any = graphql(`
44
query allOrganizationsListingDoc {
5-
organisations {
5+
organizations {
66
id
77
name
88
logo {

0 commit comments

Comments
 (0)