From 32392d37bd37ee23f992010f4ffe64a4fb4c1367 Mon Sep 17 00:00:00 2001 From: Marshall Polaris Date: Mon, 15 Aug 2022 13:23:11 -0700 Subject: [PATCH] `/Austin` -> `/market` --- web/components/comments-list.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/web/components/comments-list.tsx b/web/components/comments-list.tsx index aa23a48b..94799f4e 100644 --- a/web/components/comments-list.tsx +++ b/web/components/comments-list.tsx @@ -23,8 +23,9 @@ type ContractComment = Comment & { } function contractPath(slug: string) { - // in honor of austin, who insists that contract URLs are prefixed with a username - return `/Austin/${slug}` + // by convention this includes the contract creator username, but we don't + // have that handy, so we just put /market/ + return `/market/${slug}` } export function UserCommentsList(props: { user: User }) {