Skip to content

Commit 0188cab

Browse files
committed
Fix invalid conversion
1 parent c9b718c commit 0188cab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/net_worth_pages.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ void budget::assets_card(budget::html_writer& w) {
8989
} else {
9090
bool first = true;
9191

92-
for (const auto& [asset, amount] : w.cache.user_assets() | expand_value_conv(w.cache) | not_zero) {
92+
for (const auto& [asset, amount] : w.cache.user_assets() | expand_value(w.cache) | not_zero) {
9393
if (!first) {
9494
w << R"=====(<hr />)=====";
9595
}

0 commit comments

Comments
 (0)