diff --git a/src/Assets/3dModels/sharedModels/avatar/clothing/shirts/aa-shirts-hoodie.glb b/src/Assets/3dModels/sharedModels/avatar/clothing/shirts/aa-shirts-hoodie.glb
index fdca7971e..5ca8bd6d4 100644
Binary files a/src/Assets/3dModels/sharedModels/avatar/clothing/shirts/aa-shirts-hoodie.glb and b/src/Assets/3dModels/sharedModels/avatar/clothing/shirts/aa-shirts-hoodie.glb differ
diff --git a/src/Components/Core/Presentation/AvatarEditor/AvatarEditorPreview/AvatarEditorPreviewModel/AvatarEditorPreviewModelView.ts b/src/Components/Core/Presentation/AvatarEditor/AvatarEditorPreview/AvatarEditorPreviewModel/AvatarEditorPreviewModelView.ts
index 56468c1b4..fe7ef046b 100644
--- a/src/Components/Core/Presentation/AvatarEditor/AvatarEditorPreview/AvatarEditorPreviewModel/AvatarEditorPreviewModelView.ts
+++ b/src/Components/Core/Presentation/AvatarEditor/AvatarEditorPreview/AvatarEditorPreviewModel/AvatarEditorPreviewModelView.ts
@@ -301,15 +301,15 @@ export default class AvatarEditorPreviewModelView {
     let shirtTexture = shirtMaterial?.getActiveTextures()[0] as Texture;
 
     // Set Displacement of current mesh UV Map
-    const uDisplacement = 0;
-    const vDisplacement = 0.875;
+    // const uDisplacement = 0;
+    // const vDisplacement = 0.875;
 
     let shirtColorUOffeset = shirtColor?.uOffset ?? 0;
     let shirtColorVOffset = shirtColor?.vOffset ?? 0;
 
     if (shirtTexture === undefined) return;
-    shirtTexture.uOffset = shirtColorUOffeset - uDisplacement;
-    shirtTexture.vOffset = shirtColorVOffset - vDisplacement;
+    shirtTexture.uOffset = shirtColorUOffeset; //- uDisplacement;
+    shirtTexture.vOffset = shirtColorVOffset; //- vDisplacement;
   }
 
   private updateModelPants(pants?: AvatarPantsModels | undefined) {