Skip to content

Commit ef20876

Browse files
committed
hotfix: suppress eslint issues
1 parent 98b8077 commit ef20876

File tree

5 files changed

+18
-2
lines changed

5 files changed

+18
-2
lines changed

apps/demo/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# index
22

3+
## 0.1.15
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- material-web-components-react@0.3.10
9+
310
## 0.1.14
411

512
### Patch Changes

apps/demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "index",
3-
"version": "0.1.14",
3+
"version": "0.1.15",
44
"private": true,
55
"packageManager": "pnpm@9.1.0",
66
"scripts": {

packages/ui/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# material-web-react
22

3+
## 0.3.10
4+
5+
### Patch Changes
6+
7+
- feat: add snackbar component
8+
39
## 0.3.9
410

511
### Patch Changes

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "material-web-components-react",
3-
"version": "0.3.9",
3+
"version": "0.3.10",
44
"author": "Grayhat Team",
55
"type": "module",
66
"keywords": [

packages/ui/src/snackbar/index.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,12 @@ const showSnackbar = (
167167
return toastId;
168168
};
169169

170+
// @ts-expect-error
170171
const snackbar: typeof toast & {
171172
show: (
173+
// eslint-disable-next-line no-unused-vars
172174
message: string | ReactNode,
175+
// eslint-disable-next-line no-unused-vars
173176
options?: ToastOptions & Partial<SnackbarProps>
174177
) => void;
175178
} = toast;

0 commit comments

Comments
 (0)