Skip to content

Commit 06929df

Browse files
committed
fix test
1 parent 182aea9 commit 06929df

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

src/processors/gridsetProcessor.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1323,12 +1323,11 @@ class GridsetProcessor extends BaseProcessor {
13231323
symbolLibraryRef: symbolLibraryRef, // Store full symbol reference
13241324
grammar: isSmartGrammarCell ? grammar : undefined,
13251325
isSmartGrammarCell: isSmartGrammarCell,
1326-
predictions:
1327-
predictionWords?.length
1328-
? [...predictionWords]
1329-
: gridPredictionWords.length > 0
1330-
? [...gridPredictionWords]
1331-
: undefined,
1326+
predictions: predictionWords?.length
1327+
? [...predictionWords]
1328+
: gridPredictionWords.length > 0
1329+
? [...gridPredictionWords]
1330+
: undefined,
13321331
predictionSlot:
13331332
pluginMetadata.cellType === Grid3CellType.AutoContent &&
13341333
pluginMetadata.autoContentType === 'Prediction'

0 commit comments

Comments
 (0)