Volume limit in hyprland.lua

There a is a limit on my volume 105% in arch linux hyprland.I noticed it when I switched to lua since hyprland version 0.55.0 is in lua.I use pulseaudio,pavucontrol and pipewire.This problem does not happen in hyprland.conf version 0.54.0 and the volume has no limit. the recent chnages I made to my waybar is downloading waybar-git.But I still dont get why the volume is limited.This only happens in hyprland.lua.The volume when I switch can go up by increasing by 5% to any number as long as I press it.
hyprland.lua bind for volume
hl.bind("XF86AudioMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"), { repeat_key = true, locked = true })
hl.bind("XF86AudioLowerVolume", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"), { repeat_key = true, locked = true })
hl.bind("XF86AudioRaiseVolume", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+"), { repeat_key = true, locked = true })

this can increase volume above 105% to any and it has no limit
wpctl set-volume @DEFAULT_SINK@ 1.20
the keybinds can only set max volume to
wpctl set-volume @DEFAULT_SINK@ 1.05
this will increase volume by 5%
wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+
the keybind in my hyprland.conf
bindel = , XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
bindel = , XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
bindel = , XF86AudioRaiseVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+

xref: limit on volume pavucontrol / Applications & Desktop Environments / Arch Linux Forums