Skip to content

Commit e9fc2f0

Browse files
NagyViktNagyVikt
andauthored
fix(fleet-ui): pulse wave cards every tick (#25)
Co-authored-by: NagyVikt <nagy.viktordp@gmail.com>
1 parent 7aa5a48 commit e9fc2f0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/codex-fleet/waves-anim.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ visible_len() {
143143

144144
pulse_color() {
145145
local f="$1"
146-
if (( (f / 2) % 2 == 0 )); then
146+
if (( f % 2 == 0 )); then
147147
printf '%s' "$IOS_BLUE"
148148
else
149149
printf '%s%s' "$D" "$IOS_BLUE"

0 commit comments

Comments
 (0)