Skip to content

Commit ec9a328

Browse files
committed
Fix: Unnecessary Export for render function
1 parent ceadd4e commit ec9a328

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/r/pierre115/home/home.gno

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ func IsAuthorized(addr address) bool {
2828
}
2929

3030
func Render(_ string) string {
31-
content := md.H1("Pierre115's Home") + md.H2("About Me") + modtext + Picture + RenderProjects() + RenderLinks()
31+
content := md.H1("Pierre115's Home") + md.H2("About Me") + modtext + Picture + renderProjects() + renderLinks()
3232
return strings.ReplaceAll(content, "^", "")
3333
}
3434

35-
func RenderProjects() string {
35+
func renderProjects() string {
3636
var content string
3737
content += "\n\n## Projects\n\n"
3838
content += md.BulletList(projects)
3939
return content
4040
}
4141

42-
func RenderLinks() string {
42+
func renderLinks() string {
4343
var content string
4444
content += "\n\n## Links\n\n"
4545
content += md.BulletList(links)

0 commit comments

Comments
 (0)