unisonweb/codebase-ui

Unison Share's links with path not found

philderbeast opened this issue · 1 comments

If I'm browsing Unison Share at https://share.unison-lang.org the link to https://unison-lang.org works fine but those with a path segment, like https://unison-lang.org/docs, do not. I get a 404. If I manually change the URL scheme from https to http then they resolve.

codebase-ui/src/App.elm

Lines 312 to 315 in 5582a27

[ a [ href "https://unison-lang.org", title "Unison website", rel "noopener", target "_blank" ] [ Icon.view Icon.unisonMark ]
, a [ href "https://unison-lang.org/docs", rel "noopener", target "_blank" ] [ text "Docs" ]
, a [ href "https://unison-lang.org/docs/language-reference", rel "noopener", target "_blank" ] [ text "Language Reference" ]
, a [ href "https://unison-lang.org/community", rel "noopener", target "_blank" ] [ text "Community" ]

Fixed links to go to unisonweb.org.