Skip to content

Commit 7eb1954

Browse files
committed
style: fix lint issues
1 parent f74526d commit 7eb1954

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/components/_provisional/src/snackbar/Snackbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { useCallback, useMemo, useState } from "react";
22
import { SnackbarContext, type SnackbarContextProps } from "./context";
33
import { generateId } from "./utils";
44
import { Layer } from "@react-ck/layers";
5-
import { ElementCreator, type Item } from "./types";
5+
import { type ElementCreator, type Item } from "./types";
66
import { SnackbarItem } from "./SnackbarItem";
77
import styles from "./styles/index.module.scss";
88
import classNames from "classnames";

packages/components/_provisional/src/snackbar/context.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react";
2-
import { ElementCreator, Item } from "./types";
2+
import { type ElementCreator, type Item } from "./types";
33

44
export interface SnackbarContextProps {
55
add: (elementCreator: ElementCreator) => Item["id"];

0 commit comments

Comments
 (0)