diff --git a/src/routes/Apps/App.tsx b/src/routes/Apps/App.tsx
index efc8d76..ea7210d 100644
--- a/src/routes/Apps/App.tsx
+++ b/src/routes/Apps/App.tsx
@@ -158,7 +158,7 @@ export const AppDetail: React.FC = () => {
{app.recipe}
{app.status}
{app.chaos === 'true' && (
- 🔬 Chaos
+ Chaos
)}
@@ -236,7 +236,7 @@ export const AppDetail: React.FC = () => {
- {app.chaos === 'true' ? '🔬 Enabled' : 'Disabled'}
+ {app.chaos === 'true' ? '☠️ Enabled' : 'Disabled'}
diff --git a/src/routes/Servers/Server.tsx b/src/routes/Servers/Server.tsx
index 7e4797e..bf28050 100644
--- a/src/routes/Servers/Server.tsx
+++ b/src/routes/Servers/Server.tsx
@@ -280,7 +280,7 @@ export const Server: React.FC = () => {
{app.status}
{app.chaos === 'true' && (
- 🔬
+ ☠️
)}
{app.upgrade !== 'latest' && (
⬆️