Skip to content

Commit

Permalink
fix: removido variáveis não utilizadas
Browse files Browse the repository at this point in the history
  • Loading branch information
zolppy committed Oct 15, 2024
1 parent 0350936 commit cca1a03
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion context/CurrentMovimentationCtx.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {
import {
createContext,
Dispatch,
FC,
Expand Down
2 changes: 1 addition & 1 deletion context/CurrentRemoveTargetCtx.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {
import {
createContext,
Dispatch,
ReactNode,
Expand Down
2 changes: 1 addition & 1 deletion context/MovimentationCtx.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { createContext, ReactNode, useContext, useState } from "react";
import { createContext, ReactNode, useContext, useState } from "react";
import MovimentationType from "../utils/enums/movimentationType";
import { dateFormatter } from "../utils/functions/formatter";
import {
Expand Down
2 changes: 1 addition & 1 deletion context/OpenCloseAddDialogCtx.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { createContext, ReactNode, useContext, useState } from "react";
import { createContext, ReactNode, useContext, useState } from "react";

interface IOpenCloseAddDialog {
addDialogIsOpen: boolean;
Expand Down
8 changes: 1 addition & 7 deletions context/OpenCloseRemoveDialogCtx.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
import React, {
createContext,
FC,
ReactNode,
useContext,
useState,
} from "react";
import { createContext, FC, ReactNode, useContext, useState } from "react";

interface IOpenCloseRemoveDialog {
removeDialogIsOpen: boolean;
Expand Down

0 comments on commit cca1a03

Please sign in to comment.