From 7ff860f3cc191a35e35fb7ad1cec3fdde201632f Mon Sep 17 00:00:00 2001 From: Ategon Date: Fri, 7 Feb 2025 15:38:15 -0500 Subject: [PATCH] Fix bug where tags couldnt sort when logged out --- src/components/posts/index.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/posts/index.tsx b/src/components/posts/index.tsx index ea8e54e..cd39e30 100644 --- a/src/components/posts/index.tsx +++ b/src/components/posts/index.tsx @@ -181,14 +181,14 @@ export default function Posts() { ? `https://d2jam.com/api/v1/posts?sort=${sort}&time=${time}&tags=${ tagRules ? Object.entries(tagRules) - .map((key, value) => `${key}-${value}`) + .map((key) => `${key}`) .join("_") : "" }` : `http://localhost:3005/api/v1/posts?sort=${sort}&time=${time}&tags=${ tagRules ? Object.entries(tagRules) - .map((key, value) => `${key}-${value}`) + .map((key) => `${key}`) .join("_") : "" }` @@ -201,14 +201,14 @@ export default function Posts() { ? `https://d2jam.com/api/v1/posts?sort=${sort}&time=${time}&tags=${ tagRules ? Object.entries(tagRules) - .map((key, value) => `${key}-${value}`) + .map((key) => `${key}`) .join("_") : "" }&sticky=true` : `http://localhost:3005/api/v1/posts?sort=${sort}&time=${time}&tags=${ tagRules ? Object.entries(tagRules) - .map((key, value) => `${key}-${value}`) + .map((key) => `${key}`) .join("_") : "" }&sticky=true`