diff --git a/Dalamud/Interface/Components/ImGuiComponents.IconButton.cs b/Dalamud/Interface/Components/ImGuiComponents.IconButton.cs
index 7ef3f56e5..cee5c5390 100644
--- a/Dalamud/Interface/Components/ImGuiComponents.IconButton.cs
+++ b/Dalamud/Interface/Components/ImGuiComponents.IconButton.cs
@@ -55,7 +55,7 @@ public static partial class ImGuiComponents
/// The color of the button when hovered.
/// Indicator if button is clicked.
public static bool IconButton(int id, FontAwesomeIcon icon, Vector4? defaultColor = null, Vector4? activeColor = null, Vector4? hoveredColor = null)
- => IconButton($"{icon.ToIconString()}{id}", defaultColor, activeColor, hoveredColor);
+ => IconButton($"{icon.ToIconString()}##{id}", defaultColor, activeColor, hoveredColor);
///
/// IconButton component to use an icon as a button with color options.