We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7b6e9f commit 86e6e6eCopy full SHA for 86e6e6e
lib/algora_web/live/org/dashboard_live.ex
@@ -1351,7 +1351,10 @@ defmodule AlgoraWeb.Org.DashboardLive do
1351
class="flex flex-wrap items-center gap-x-3 gap-y-1 text-sm text-muted-foreground sm:text-sm"
1352
>
1353
<span class="font-semibold font-display text-base sm:text-lg text-emerald-400">
1354
- {Money.to_string!(@match[:hourly_rate])}/hr
+ {@match[:hourly_rate]
1355
+ |> Money.mult!(@match.user.hours_per_week || 30)
1356
+ |> Money.mult!(Decimal.new("1.13"))
1357
+ |> Money.to_string!()}/wk
1358
</span>
1359
</div>
1360
0 commit comments