Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jordisala1991 committed Jun 6, 2024
1 parent 8fea3fb commit 2e0d3e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ui-src/parser/creators/createPage.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { sleep } from '@plugin/utils';
// @TODO: Direct import on purpose, to avoid problems with the tsc linting
import { sleep } from '@plugin/utils/sleep';

import { PenpotFile } from '@ui/lib/types/penpotFile';
import { PenpotPage } from '@ui/lib/types/penpotPage';
Expand Down
3 changes: 2 additions & 1 deletion ui-src/parser/parse.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { componentsLibrary } from '@plugin/ComponentLibrary';
import { sleep } from '@plugin/utils';
// @TODO: Direct import on purpose, to avoid problems with the tsc linting
import { sleep } from '@plugin/utils/sleep';

import { sendMessage } from '@ui/context';
import { createFile } from '@ui/lib/penpot';
Expand Down

0 comments on commit 2e0d3e9

Please sign in to comment.