How to remove image scales() from GLMakie?

I have the following question, I am putting together some images with GLMakie but I do not have much experience with packaging, but I would like to remove the graduated sides around the images but I do not know how to do it and what is in the axis section does not work.

Here I leave you an example:

f = Figure(resolution=(1000, 1000))

image(f[1, 1:2], img_vio100,
    axis = (aspect = DataAspect(), title = "DataAspect()",))
image(f[2, 1], img_azu100,
    axis = (aspect = DataAspect(), title = "DataAspect()",))
image(f[2, 2], img_nar100, 
    axis = (aspect = DataAspect(), title = "DataAspect()",))
image(f[3, 1], img_roj100,
    axis = (aspect = DataAspect(), title = "DataAspect()",))
image(f[3, 2], img_ver100, 
    axis = (aspect = DataAspect(), title = "DataAspect()",))
f

Have you tried these?

	hidedecorations!(axis)
	hidespines!(axis)