diff --git a/apps/arkmarket/src/constants/activity-type-metadata.tsx b/apps/arkmarket/src/constants/activity-type-metadata.tsx
index f5b0469f..4cb5bb0a 100644
--- a/apps/arkmarket/src/constants/activity-type-metadata.tsx
+++ b/apps/arkmarket/src/constants/activity-type-metadata.tsx
@@ -9,6 +9,7 @@ import {
Gavel,
ShoppingCart,
TimerReset,
+ Undo2,
} from "@ark-market/ui/icons";
import type { ActivityType } from "~/types";
@@ -37,4 +38,5 @@ export default {
OFFER: { icon: , title: "Offer" },
SALE: { icon: , title: "Sale" },
TRANSFER: { icon: , title: "Transfer" },
+ ROLLBACK: { icon: , title: "Rollback" },
} as ActivityTypeMetadata;
diff --git a/apps/arkmarket/src/types/index.ts b/apps/arkmarket/src/types/index.ts
index e346b6f5..4b6ecba4 100644
--- a/apps/arkmarket/src/types/index.ts
+++ b/apps/arkmarket/src/types/index.ts
@@ -167,6 +167,7 @@ export const activityTypes = [
"OFFER",
"SALE",
"TRANSFER",
+ "ROLLBACK",
] as const;
export type ActivityType = (typeof activityTypes)[number];
diff --git a/packages/ui/src/icons.tsx b/packages/ui/src/icons.tsx
index 3b8a4b7a..0ff11145 100644
--- a/packages/ui/src/icons.tsx
+++ b/packages/ui/src/icons.tsx
@@ -47,6 +47,7 @@ import {
ShoppingBag,
Slash,
X,
+ Undo2,
} from "lucide-react";
import type { PropsWithClassName } from ".";
@@ -71,6 +72,7 @@ export {
ShoppingBag,
Slash,
X,
+ Undo2,
};
export const Congratulations =