This commit is contained in:
tdgao
2026-08-18 22:08:26 -06:00
parent 51bdd0a2e4
commit f001f620a4
2 changed files with 25 additions and 24 deletions
@@ -730,7 +730,7 @@ pub(crate) async fn update_recent_instance_icon_config(
SELECT rowid
FROM recent_instance_icon_configs
ORDER BY used_at DESC, background, symbol
LIMIT 8
LIMIT 16
)
",
)
@@ -748,7 +748,7 @@ pub(crate) async fn get_recent_instance_icon_configs(
SELECT background, symbol
FROM recent_instance_icon_configs
ORDER BY used_at DESC, background, symbol
LIMIT 8
LIMIT 16
",
)
.fetch_all(pool)