Skip to content

Commit

Permalink
chore(deps): update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
megheaiulian committed Jun 16, 2022
1 parent c2fc65d commit 4b68e68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/next/cosmoz-tab.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { component, useEffect, useLayoutEffect } from 'haunted';
import { html, nothing } from 'lit-html';
import { ifDefined } from 'lit-html/directives/if-defined';
import { ifDefined } from 'lit-html/directives/if-defined.js';
import computeScroll from 'compute-scroll-into-view';

import style from './cosmoz-tab.css';
Expand Down
2 changes: 1 addition & 1 deletion src/next/use-tabs.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable import/group-exports */
import { html, useMemo, useCallback, useRef } from 'haunted';
import { ifDefined } from 'lit-html/directives/if-defined';
import { ifDefined } from 'lit-html/directives/if-defined.js';
import { useHashParam } from '@neovici/cosmoz-page-router/lib/use-hash-param';

const isValid = (tab) => !tab.hidden && !tab.disabled,
Expand Down
2 changes: 1 addition & 1 deletion src/render.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { html } from 'haunted';
import { ifDefined } from 'lit-html/directives/if-defined';
import { ifDefined } from 'lit-html/directives/if-defined.js';
import { getIcon, getIconStyle } from './utils';

const style = `
Expand Down

0 comments on commit 4b68e68

Please sign in to comment.