fix: incorrect size for parseNext

This commit is contained in:
Shiny Nematoda
2024-08-04 19:30:36 +00:00
parent 6eb02d94fc
commit 2dbf0d2274
3 changed files with 16 additions and 17 deletions
+1 -1
View File
@@ -205,7 +205,7 @@ func ResponsiveListItemRendererCH(s gjson.Result) []Item {
}
func NavigationButton(s gjson.Result) []Item {
size := s.Get("#").Int()
size := s.Get("#").Int()
r := make([]Item, size)
wg := sync.WaitGroup{}