Skip to content

Commit

Permalink
Merge pull request #35 from thefrontside/tm/add-forward-slash-prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
taras authored Dec 24, 2024
2 parents 380fda1 + bbd6327 commit 3a986f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion www/components/index/item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function PackageIndexItem(props: PackageIndexItemProps) {
return (
<li class="px-0">
<h3>
<a href={pkg.workspace}>{pkg.workspace}</a>
<a href={`/${pkg.workspace}`}>{pkg.workspace}</a>
</h3>
<p>
<pkg.MDXDescription />
Expand Down
2 changes: 1 addition & 1 deletion www/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { main, suspend } from "effection";
import { call, main, suspend } from "effection";
import { createRevolution, ServerInfo } from "revolution";
import { initDenoDeploy } from "../deno-deploy/mod.ts";

Expand Down

0 comments on commit 3a986f8

Please sign in to comment.