diff --git a/invokeai/frontend/web/src/features/controlLayers/components/LayerCommon/LayerMenu.tsx b/invokeai/frontend/web/src/features/controlLayers/components/LayerCommon/LayerMenu.tsx
index 0a3b52a3ff..aabad5ed63 100644
--- a/invokeai/frontend/web/src/features/controlLayers/components/LayerCommon/LayerMenu.tsx
+++ b/invokeai/frontend/web/src/features/controlLayers/components/LayerCommon/LayerMenu.tsx
@@ -29,6 +29,9 @@ export const LayerMenu = memo(({ layerId }: Props) => {
layerType === 'raster_layer'
);
}, [layerType]);
+ const shouldShowResetAction = useMemo(() => {
+ return layerType === 'regional_guidance_layer' || layerType === 'raster_layer';
+ }, [layerType]);
return (