Skip to content

Commit

Permalink
fix values file .env
Browse files Browse the repository at this point in the history
  • Loading branch information
karenyov committed Apr 12, 2023
1 parent 137a114 commit cbd6293
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 34 deletions.
12 changes: 4 additions & 8 deletions .env
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
APP_NAME=FINANCES
BASE_URL=
BASE_URL_API=https://6c84-2804-2448-809e-e800-9c4a-d13c-4740-5e7d.ngrok-free.app
NODE_ENV=development
BASE_URL_API=
NODE_ENV=

BASE_URL_AUTH=/api/v1

# https://generate-secret.vercel.app/32
# NEXTAUTH_SECRET=0f9a50595b6f3517d8ed2a1ca5c016ba


NEXTAUTH_URL=http:https://localhost:3000
JWT_SECRET=HS512
NEXTAUTH_URL=
JWT_SECRET=
Binary file modified app.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 0 additions & 14 deletions src/components/DataTableBase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,6 @@ export default function DataTableBase({ columns, data, title = "" }: Props) {
colorMode == "dark" ? theme.colors.gray["800"] : "white",
},
},
// header: {
// style: {
// fontSize: "22px",
// color:
// colorMode == "dark"
// ? theme.colors.gray["200"]
// : theme.colors.gray["800"],
// backgroundColor:
// colorMode == "dark" ? theme.colors.gray["800"] : "white",
// minHeight: "56px",
// paddingLeft: "16px",
// paddingRight: "8px",
// },
// },
headRow: {
style: {
fontSize: "17px",
Expand Down
1 change: 0 additions & 1 deletion src/components/tables/DebtsAllTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import {
Tab,
Tabs,
TabList,
TabIndicator,
TabPanels,
TabPanel,
} from "@chakra-ui/react";
Expand Down
4 changes: 0 additions & 4 deletions src/components/tables/HistoryAllByRegisterTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,12 @@ import {
Tag
} from "@chakra-ui/react";
import {
LineChart,
Line,
XAxis,
YAxis,
CartesianGrid,
Legend,
ResponsiveContainer,
BarChart,
Bar,
Cell,
} from "recharts";
import { FiTrash2 } from "react-icons/fi";

Expand Down
2 changes: 0 additions & 2 deletions src/components/tables/HistoryTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
import { HamburgerIcon } from "@chakra-ui/icons";
import {
Button as ButtonBase,
Text,
IconButton as IconButtonBase,
useColorMode,
AlertDialog,
AlertDialogOverlay,
AlertDialogContent,
Expand Down
5 changes: 0 additions & 5 deletions src/styles/components/buttonStyles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,8 @@ import { defineStyleConfig } from "@chakra-ui/react";
import { mode } from "@chakra-ui/theme-tools";

export const ButtonStyles = defineStyleConfig({
// The styles all button have in common
baseStyle: {},
// Two sizes: sm and md
sizes: {},

// Two variants: outline and solid
variants: {
primary: (props) => ({
color: mode("white", "white")(props),
Expand All @@ -24,7 +20,6 @@ export const ButtonStyles = defineStyleConfig({
bg: "secondary.400",
},
}),

},
defaultProps: {},
});

0 comments on commit cbd6293

Please sign in to comment.