Skip to content

Commit 94849f0

Browse files
committed
ignore claimed spelling mistake by yarn spellcheck
1 parent 433affe commit 94849f0

File tree

1 file changed

+2
-1
lines changed
  • src/pages/[platform]/build-a-backend/data/data-modeling/secondary-index

1 file changed

+2
-1
lines changed

src/pages/[platform]/build-a-backend/data/data-modeling/secondary-index/index.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { getCustomStaticPath } from '@/utils/getCustomStaticPath';
2-
32
export const meta = {
43
title: 'Customize secondary indexes',
54
description:
@@ -117,6 +116,7 @@ import 'models/ModelProvider.dart';
117116
// highlight-start
118117
final request = ModelQueries.list(
119118
Customer.classType,
119+
// eslint-disable-next-line spellcheck/spell-checker
120120
where: Customer.ACCOUNTREPRESENTATIVEID.eq(YOUR_REP_ID),
121121
);
122122
// highlight-end
@@ -218,6 +218,7 @@ import 'models/ModelProvider.dart';
218218
// highlight-start
219219
final request = ModelQueries.list(
220220
Customer.classType,
221+
// eslint-disable-next-line spellcheck/spell-checker
221222
where: Customer.ACCOUNTREPRESENTATIVEID.eq(YOUR_REP_ID) & Customer.NAME.beginsWith("Rene"),
222223
);
223224
// highlight-end

0 commit comments

Comments
 (0)