Skip to content

Commit

Permalink
fix(typo): correct typo in examples/app-crm-minimal (refinedev#6236)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anonymous961 committed Aug 7, 2024
1 parent 9906899 commit 20910b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/app-crm-minimal/README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ export const DASHBOARD_TOTAL_COUNTS_QUERY = gql`
`;

// Query to get upcoming events
export const DASHBORAD_CALENDAR_UPCOMING_EVENTS_QUERY = gql`
export const DASHBOARD_CALENDAR_UPCOMING_EVENTS_QUERY = gql`
query DashboardCalendarUpcomingEvents(
$filter: EventFilter!
$sorting: [EventSort!]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import dayjs from "dayjs";
import { Text } from "@/components";
import type { DashboardCalendarUpcomingEventsQuery } from "@/graphql/types";

import { DASHBORAD_CALENDAR_UPCOMING_EVENTS_QUERY } from "./queries";
import { DASHBOARD_CALENDAR_UPCOMING_EVENTS_QUERY } from "./queries";

export const CalendarUpcomingEvents = () => {
const { data, isLoading } = useList<
Expand All @@ -32,7 +32,7 @@ export const CalendarUpcomingEvents = () => {
},
],
meta: {
gqlQuery: DASHBORAD_CALENDAR_UPCOMING_EVENTS_QUERY,
gqlQuery: DASHBOARD_CALENDAR_UPCOMING_EVENTS_QUERY,
},
});

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import gql from "graphql-tag";

export const DASHBORAD_CALENDAR_UPCOMING_EVENTS_QUERY = gql`
export const DASHBOARD_CALENDAR_UPCOMING_EVENTS_QUERY = gql`
query DashboardCalendarUpcomingEvents(
$filter: EventFilter!
$sorting: [EventSort!]
Expand Down

0 comments on commit 20910b5

Please sign in to comment.