diff --git a/src/app/components/NavBar.tsx b/src/app/components/NavBar.tsx
index 86f0cb87..850aa1e3 100644
--- a/src/app/components/NavBar.tsx
+++ b/src/app/components/NavBar.tsx
@@ -1,6 +1,6 @@
import React from "react";
import Image from "next/image";
-import { MoonIcon } from "@heroicons/react/24/outline";
+import { FaRegMoon } from "react-icons/fa6";
// TODO: theme switching
@@ -28,7 +28,7 @@ export function Navbar() {
className="btn mx-2 border-none"
style={{ height: "40px", minHeight: "40px" }}
>
-
+
From 8f285abbddf3cdb970195df0262257225f89694f Mon Sep 17 00:00:00 2001
From: Evgeniia Vakarina <27793901+EvgeniiaVak@users.noreply.github.com>
Date: Fri, 22 Sep 2023 12:20:45 +0400
Subject: [PATCH 08/24] update discord link in contributing.md
---
CONTRIBUTING.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index a3ff8b30..8dc784e0 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -4,7 +4,7 @@ Check out [existing issues (especially Todo)](https://github.com/orgs/DeXter-on-
Here are a few guidelines to follow:
-- **Discuss** major changes with the maintainers before starting work, our [Discord](https://discord.gg/Ybydr5NT) is a good place to do that
+- **Discuss** major changes with the maintainers before starting work, our [Discord](https://discord.gg/YCtv3BDQ) is a good place to do that
- **Use [Pull Requests (PRs)](https://docs.github.com/en/pull-requests)** - commits direclty to `main` branch are not allowed
- **Use [Prettier](https://prettier.io/)** and automatic code formatting to keep PRs focused on the changes
- **Use [ESLint](https://eslint.org/)** to keep code clean and consistent
From 51d61d5578939bba0c108c0e7a7776823925cd0a Mon Sep 17 00:00:00 2001
From: Victor
Date: Fri, 22 Sep 2023 09:47:20 -0400
Subject: [PATCH 09/24] fixed typo
---
src/app/components/PriceInfo.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/app/components/PriceInfo.tsx b/src/app/components/PriceInfo.tsx
index 237e7d9b..1aa4218a 100644
--- a/src/app/components/PriceInfo.tsx
+++ b/src/app/components/PriceInfo.tsx
@@ -31,7 +31,7 @@ export function PriceInfo() {
isNegativeOrZero ? "text-sm font-bold text-red-500" : "text-xs text-green-500"
}
>
- {isNegativeOrZero ? "-" + change : "+" + change}
+ {isNegativeOrZero ? change : "+" + change}
%