diff --git a/Source/WidgetInteraction/Private/WidgetInteraction.cpp b/Source/WidgetInteraction/Private/WidgetInteraction.cpp
index f414d1d36a5e20cf120c0af09964b85bffd57fe5..9ab7b4c13f3941c8f298f9aa99bca590c0885bf4 100644
--- a/Source/WidgetInteraction/Private/WidgetInteraction.cpp
+++ b/Source/WidgetInteraction/Private/WidgetInteraction.cpp
@@ -59,12 +59,12 @@ void FWidgetInteractionModule::OnWorldTickStart(ELevelTick level_tick, float val
       //if this is a standalone setup ...
       if (UHeadMountedDisplayFunctionLibrary::IsHeadMountedDisplayEnabled()) {
         //.. with an HMD, we attach the intercation component to the right hand
-        name = FString("RightMotionController");
+        name = FString("HMDRightMotionController");
         component_class = UMotionControllerComponent::StaticClass();
       }
       else {
         //... without an HMD, we also attach it to the virtual right hand, since it exists in this case
-        name = TEXT("RightMotionController");
+        name = TEXT("HMDRightMotionController");
         component_class = UMotionControllerComponent::StaticClass();
       }
     }