reorder default bookmarks

This commit is contained in:
Timon Ringwald 2022-09-05 14:55:21 +02:00
parent 2100433ad7
commit 52c3ddb3e2

View File

@ -6,7 +6,7 @@ import (
)
func DefaultBookmarks() []Bookmark {
return []Bookmark{
bookmarks := []Bookmark{
{
Title: "DuckDuckGo",
Image: "https://duckduckgo.com/assets/logo_homepage.alt.v108.svg",
@ -73,6 +73,8 @@ func DefaultBookmarks() []Bookmark {
Color: "#175ddc",
},
}
Reorder(bookmarks)
return bookmarks
}
type Bookmark struct {