Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit 3de4fbb

Browse files
committed
fix(c11n): set camalCase theme edge case
1 parent a5f035f commit 3de4fbb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/mastani_server/accounts/delegates/customization.ex

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,8 @@ defmodule MastaniServer.Accounts.Delegate.Customization do
131131
end
132132

133133
defp downcase_theme("SOLARIZEDDARK"), do: "solarizedDark"
134+
defp downcase_theme("solarizedDark"), do: "solarizedDark"
134135
defp downcase_theme("IRONGREEN"), do: "ironGreen"
136+
defp downcase_theme("ironGreen"), do: "ironGreen"
135137
defp downcase_theme(theme), do: String.downcase(theme)
136138
end

0 commit comments

Comments
 (0)