Skip to content

Commit c007782

Browse files
committed
misc
1 parent edfa15f commit c007782

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

config/config.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ config :algora, Oban,
6262
notify_transfer: 1,
6363
prompt_payout_connect: 1,
6464
activity_discord: 1,
65-
sync_contribution: 20
65+
sync_contribution: 5
6666
]
6767

6868
# Configures the mailer

lib/algora_web/components/tech_badge.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ defmodule AlgoraWeb.Components.TechBadge do
7676
"golang" ->
7777
"go"
7878

79+
"hcl" ->
80+
"terraform"
81+
7982
"plpgsql" ->
8083
"postgresql"
8184

lib/algora_web/data/home_cache.ex

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,7 @@ defmodule AlgoraWeb.Data.HomeCache do
184184
end
185185

186186
defp compute_jobs_by_user do
187-
Algora.Jobs.list_jobs()
188-
|> Enum.group_by(& &1.user)
187+
Enum.group_by(Algora.Jobs.list_jobs(), & &1.user)
189188
end
190189

191190
defp compute_orgs_with_stats do
@@ -196,4 +195,4 @@ defmodule AlgoraWeb.Data.HomeCache do
196195
Map.put(org, :bounty_stats, stats)
197196
end)
198197
end
199-
end
198+
end

lib/algora_web/live/home_live.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ defmodule AlgoraWeb.HomeLive do
624624
<div class="inline-flex items-center gap-2 px-4 py-2 bg-emerald-400/10 border border-emerald-400/20 rounded-lg">
625625
<.icon name="tabler-rocket" class="size-4 text-emerald-400" />
626626
<span class="text-sm font-medium text-emerald-400">
627-
New HN launch coming in July
627+
New HN launch coming in August
628628
</span>
629629
</div>
630630
</div>

0 commit comments

Comments
 (0)