Skip to content

Commit

Permalink
eslint errors fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
kanzitelli committed Mar 15, 2022
1 parent b749fe4 commit ab5b030
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/reanimated2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type Reanimated2Props = {
stID?: string;
};

export const Reanimated2: React.FC<Reanimated2Props> = ({stID}: Reanimated2Props) => {
export const Reanimated2: React.FC<Reanimated2Props> = ({}: Reanimated2Props) => {
const offset = useSharedValue(0);

const animatedStyles = useAnimatedStyle(() => ({
Expand Down
1 change: 0 additions & 1 deletion src/stores/ui.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import {makeAutoObservable} from 'mobx';
import {hydrateStore, makePersistable} from 'mobx-persist-store';
import {services} from '../services';
import {restartApp} from '../utils/help';

export class UIStore implements IStore {
Expand Down

0 comments on commit ab5b030

Please sign in to comment.