/Austin -> /market

This commit is contained in:
Marshall Polaris 2022-08-15 13:23:11 -07:00
parent 61c13d171a
commit 32392d37bd

View File

@ -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 }) {