Skip to content

Commit

Permalink
fix some lint problems
Browse files Browse the repository at this point in the history
  • Loading branch information
ru-danko authored May 9, 2024
1 parent ec99710 commit 9cd673d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Table/Table.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Component } from 'react';

import { Clipboard } from 'components/Clipboard';
import { Tips } from 'components/Tips';
import { parseStr } from 'components/Text';
import { Tips } from 'components/Tips';

import './Table.scss';

Expand Down
2 changes: 1 addition & 1 deletion src/components/Tips/Tips.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const Tips =
({ str, tips, className }: ITipsProps) => {
const dispatch = useDispatch();
const onClick = () => {
dispatch(setNotificationAction({ text: tips }));
dispatch(setNotificationAction({ text: tips }));
};

return (
Expand Down

0 comments on commit 9cd673d

Please sign in to comment.