Skip to content

Commit

Permalink
fix: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
BRAVO68WEB committed Jan 22, 2024
1 parent 11b6ed9 commit ae39e53
Show file tree
Hide file tree
Showing 12 changed files with 1,507 additions and 1,504 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
packages/*/dist
apps/*/dist
1 change: 1 addition & 0 deletions apps/web/src/components/navbar.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable react/prop-types */
import { Link } from "react-router-dom";

import "../styles/navbar.styles.css";
Expand Down
1 change: 0 additions & 1 deletion apps/web/src/pages/app.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import "react-toastify/dist/ReactToastify.css";
import Navbar from "../components/navbar";
import { useEffect, useState } from "react";
import Machines from "../components/machine";
import Challenge from "../components/challenge";
Expand Down
1 change: 1 addition & 0 deletions packages/api/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist
4 changes: 2 additions & 2 deletions packages/api/extras/cache.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Redis } from "@upstash/redis"
import { Redis } from "@upstash/redis";

export const cache_client = new Redis({
url: process.env.UPSTASH_REDIS_REST_URL,
token: process.env.UPSTASH_REDIS_REST_TOKEN,
})
});
Loading

0 comments on commit ae39e53

Please sign in to comment.