Skip to content

Commit

Permalink
Removed unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
MRita443 committed Aug 1, 2023
1 parent 999771e commit c47f47e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/lib/layout/hexagons/TeamMemberHexagon.stories.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { userEvent, within } from '@storybook/testing-library';
import { expect } from '@storybook/jest';
import TeamMemberHexagon from './TeamMemberHexagon.svelte';

export default {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/layout/hexagons/TeamMemberHexagon.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
let clickToggle = 0;
target?.addEventListener('touchstart', (e) => {
target?.addEventListener('touchstart', () => {
if (!clickToggle) {
if (container) {
container.style.top = '50%';
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts,stories.js,stories.ts}'],
future: {
hoverOnlyWhenSupported: true,
hoverOnlyWhenSupported: true
},
theme: {
extend: {
Expand Down

0 comments on commit c47f47e

Please sign in to comment.