From 0ce3e02aae9a09e750e2a1f7c6050df4b42b8cd6 Mon Sep 17 00:00:00 2001 From: Louis Dalibard Date: Wed, 1 May 2024 14:21:19 +0200 Subject: [PATCH] init: first commit --- ui/components/components.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/components/components.go b/ui/components/components.go index 5dd6a53..fb969a5 100644 --- a/ui/components/components.go +++ b/ui/components/components.go @@ -13,7 +13,7 @@ import ( ) func VersionNumber() string { - return " himitsu " + styling.ColorFg(config.Version, styling.HighlightedColor) + return " himitsu " + styling.ColorFg(config.Version, styling.HighlightedColor) } func Checkbox(label string, checked bool, selected bool) string { @@ -49,7 +49,7 @@ func TOTP(currTotp totp.TOTP) string { } func KeybindsHints(keybinds []string) string { - s := " " + s := " " for index, keybind := range keybinds { if index != 0 { s += styling.Dot