diff --git a/docs/search-features.md b/docs/search-features.md
index c6ade284..332d1be8 100644
--- a/docs/search-features.md
+++ b/docs/search-features.md
@@ -10,9 +10,9 @@ The Search Page has been enhanced with new filtering and sorting capabilities us
- **Visual Indicator**: Button turns blue when active
- **Fallback**: If backend doesn't support native friends filtering, client-side filtering is used
-### 🔥 Interactions Sorting
+### 🧲 Interactions Sorting
- **Functionality**: Sorts posts by total interactions (comments + votes + quotes)
-- **Usage**: Click the 🔥 button to toggle interaction-based sorting
+- **Usage**: Click the 🧲 button to toggle interaction-based sorting
- **Visual Indicator**: Button turns blue when active
- **Algorithm**: Posts with more interactions appear first
diff --git a/src/views/SearchPage/index.jsx b/src/views/SearchPage/index.jsx
index 8356cc0d..123b258e 100644
--- a/src/views/SearchPage/index.jsx
+++ b/src/views/SearchPage/index.jsx
@@ -583,7 +583,7 @@ export default function SearchPage() {
onClick={handleInteractionsFilter}
title="Sort by most interactions"
>
- 🔥
+ 🧲
Active Filters:
{filterMode === 'friends' && ' 👥 Friends only'}
- {filterMode === 'interactions' && ' 🔥 Sorted by interactions'}
+ {filterMode === 'interactions' && ' 🧲 Sorted by interactions'}
{dateRangeFilter.startDate && ` 📅 From ${format(dateRangeFilter.startDate, 'MMM d, yyyy')}`}
{dateRangeFilter.endDate && ` to ${format(dateRangeFilter.endDate, 'MMM d, yyyy')}`}
@@ -834,7 +834,7 @@ export default function SearchPage() {
onClick={handleInteractionsFilter}
title="Sort by most interactions"
>
- 🔥
+ 🧲
Active Filters:
{filterMode === 'friends' && ' 👥 Friends only'}
- {filterMode === 'interactions' && ' 🔥 Sorted by interactions'}
+ {filterMode === 'interactions' && ' 🧲 Sorted by interactions'}
{dateRangeFilter.startDate && ` 📅 From ${format(dateRangeFilter.startDate, 'MMM d, yyyy')}`}
{dateRangeFilter.endDate && ` to ${format(dateRangeFilter.endDate, 'MMM d, yyyy')}`}