My @editables for verse is not appearing in my verse device.

I am trying to attach a guard spawner device to my verse device, but when I make any @editable, they do not appear in the user options. Here is my code.

> using { /Fortnite.com/Devices }
> using { /Verse.org/Simulation }
> using { /UnrealEngine.com/Temporary/Diagnostics }
> 
> # See https://dev.epicgames.com/documentation/en-us/uefn/create-your-own-device-in-verse for how to create a verse device.
> 
> # A Verse-authored creative device that can be placed in a level
> Wave_System := class(creative_device):
> 
>     # Runs when the device is started in a running game
>     OnBegin<override>()<suspends>:void=
>         # TODO: Replace this with your code
>         #----------------------------------#
>         # Devices
>         @editable
>             Spawner : guard_spawner_device = guard_spawner_device{}
> 
>         @editable
>             AddMoreTimeButton : button_device = button_device{}
>         
>         @editable
>             MyButtonDevice:button_device = button_device{}
>         #----------------------------------#
>         # Variables
>         var Wave:int = 0
>         #----------------------------------#
>         # Get wave
>         Print("Wave {Wave}", ?Duration:=6.0)

I added the buttons to test if it is me or the a bug. I got the button editables from the official documentations. This is a screenshot of what I see in the editor.