Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
etrepum committed Mar 4, 2025
1 parent 84397b7 commit 1cc58da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/lexical-playground/src/nodes/PollNode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import {
SerializedLexicalNode,
Spread,
StateConfigValue,
type StateValueOrUpdater,
} from 'lexical';
import {StateValueOrUpdater} from 'packages/lexical/src/LexicalNodeState';
import * as React from 'react';

export type Options = ReadonlyArray<Option>;
Expand Down
6 changes: 3 additions & 3 deletions packages/lexical/src/LexicalNodeState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
*
*/

import invariant from 'shared/invariant';

import {
$getEditor,
type Klass,
Expand All @@ -14,9 +16,7 @@ import {
NODE_STATE_KEY,
type Spread,
type StaticNodeConfigRecord,
} from 'lexical';
import invariant from 'shared/invariant';

} from '.';
import {PROTOTYPE_CONFIG_METHOD} from './LexicalConstants';
import {errorOnReadOnly} from './LexicalUpdates';
import {getRegisteredNodeOrThrow, getStaticNodeConfig} from './LexicalUtils';
Expand Down

0 comments on commit 1cc58da

Please sign in to comment.