diff --git a/WebApp/Components/Shared/Components/InteractiveChip.razor b/WebApp/Components/Shared/Components/InteractiveChip.razor
index 35a2523..05162b6 100644
--- a/WebApp/Components/Shared/Components/InteractiveChip.razor
+++ b/WebApp/Components/Shared/Components/InteractiveChip.razor
@@ -19,18 +19,21 @@
@ChildContent
@if (ControlContent != null)
{
- @* Always show controls on mobile/touch devices *@
-
- @ControlContent
-
- @* Show on hover for desktop devices *@
-
- @if (_isHovered || AlwaysShowControls || _isTouched)
- {
- @ControlContent
- }
-
- }
+ @* Show on touch for mobile/touch devices (below Md) *@
+
+ @if (_isTouched || AlwaysShowControls)
+ {
+ @ControlContent
+ }
+
+ @* Show on hover for desktop devices (MdAndUp) *@
+
+ @if (_isHovered || AlwaysShowControls)
+ {
+ @ControlContent
+ }
+
+ }