Skip to content

Commit

Permalink
fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
leohhhn committed Feb 21, 2025
1 parent 7fbe71a commit 466b7e8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions examples/gno.land/r/gnoland/users/users.gno
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package users

import (
"std"
"strings"

"gno.land/p/demo/dao"
Expand All @@ -21,8 +22,8 @@ func Render(_ string) string {
return changelog.RenderAsTable(10)
}

func LatestRelease() *releases.release {
return changelog.Latest()
func LatestRelease() string {
return std.ChainDomain() + changelog.Latest().URL()
}

// ProposeNewRelease allows a GovDAO proposal to add a release to the changelog
Expand Down

0 comments on commit 466b7e8

Please sign in to comment.