diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tour/components.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tour/components.gleam b/src/tour/components.gleam index 98d7590..a1e78c9 100644 --- a/src/tour/components.gleam +++ b/src/tour/components.gleam @@ -19,7 +19,7 @@ pub fn text_link( /// Renders the tour's navbar as html pub fn navbar(titled title: String, links links: List(Link)) -> Html { - let links = list.map(links, fn(l) { text_link(l, [#("class", "link")]) }) + let links = list.map(links, fn(l) { text_link(l, []) }) let nav_right_items = list.flatten([links, [widgets.theme_picker()]]) |