CachyOS Hyprland Move focus with $mainMod+Arrow keys doesn't work

Can’t move “focus with mainMod + arrow keys”

bindde = $mainMod, Move focus to the left, left, movefocus, l
bindde = $mainMod, Move focus to the right, right, movefocus, r

Those commands are in config by default and i can’t move focus for some reason. I did installed default Arch with Hyprland and it worked for me on pure Arch. Im complete newbie in compositors/wm world, so don’t have an idea how to fix this.

I figured it out myself (i guessed it)

You need to change default bind by CachyOS from

bindde = $mainMod, Move focus to the left, left, movefocus, l
bindde = $mainMod, Move focus to the right, right, movefocus, r
bindde = $mainMod, Move focus upwards, up, movefocus, u
bindde = $mainMod, Move focus downwards, down, movefocus, d

to

bind = $mainMod, LEFT, movefocus, l
bind = $mainMod, RIGHT, movefocus, r
bind = $mainMod, UP, movefocus, u
bind = $mainMod, DOWN, movefocus, d

I believe the default configuration is incorrectly formatted. The description should be after the keys, e.g. LEFT, Move focus to the left