We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 182aea9 commit 06929dfCopy full SHA for 06929df
1 file changed
src/processors/gridsetProcessor.ts
@@ -1323,12 +1323,11 @@ class GridsetProcessor extends BaseProcessor {
1323
symbolLibraryRef: symbolLibraryRef, // Store full symbol reference
1324
grammar: isSmartGrammarCell ? grammar : undefined,
1325
isSmartGrammarCell: isSmartGrammarCell,
1326
- predictions:
1327
- predictionWords?.length
1328
- ? [...predictionWords]
1329
- : gridPredictionWords.length > 0
1330
- ? [...gridPredictionWords]
1331
- : undefined,
+ predictions: predictionWords?.length
+ ? [...predictionWords]
+ : gridPredictionWords.length > 0
+ ? [...gridPredictionWords]
+ : undefined,
1332
predictionSlot:
1333
pluginMetadata.cellType === Grid3CellType.AutoContent &&
1334
pluginMetadata.autoContentType === 'Prediction'
0 commit comments