Skip to content

Commit

Permalink
fix: Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
florianeckerstorfer committed Nov 15, 2023
1 parent 59afd3f commit 5431bae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __tests__/gatsby.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import plugin from '../src/gatsby';
import Remark from 'remark';
import { visit } from 'unist-util-visit';
import visit from 'unist-util-visit';

describe('remark-a11y-emoji/gatsby', () => {
let remark;
Expand Down
2 changes: 1 addition & 1 deletion src/gatsby.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import emojiRegex from 'emoji-regex';
import { visit } from 'unist-util-visit';
import visit from 'unist-util-visit';
import { getEmojiDescription } from './helper';

function a11yEmoji({ markdownAST }) {
Expand Down

0 comments on commit 5431bae

Please sign in to comment.