fix(lib): Fix parens
This commit is contained in:
parent
0f2722c5f7
commit
80b67d9d9e
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ in
|
|||
# string -> string
|
||||
# convert flavor to full theme name in kebab case
|
||||
# a convenience to deal with the main flavor naming
|
||||
getKebabTheme = flavor: (if flavor == "main" then "rose-pine" else "rose-pine-${flavor}");
|
||||
getKebabTheme = flavor: if (flavor == "main") then "rose-pine" else "rose-pine-${flavor}";
|
||||
|
||||
# string -> string
|
||||
# this capitalizes the first letter in a string,
|
||||
|
|
Loading…
Reference in a new issue