diff --git a/app/client/src/ce/api/ApplicationApi.tsx b/app/client/src/ce/api/ApplicationApi.tsx index 2ffa8cc883fb..dec3fcd7a535 100644 --- a/app/client/src/ce/api/ApplicationApi.tsx +++ b/app/client/src/ce/api/ApplicationApi.tsx @@ -204,7 +204,6 @@ export interface UpdateApplicationResponse { isPublic: boolean; pages: PageDefaultMeta[]; appIsExample: boolean; - unreadCommentThreads: number; color: string; icon: IconNames; slug: string; diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Application.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Application.java index 3b88521ed641..db9405334e4f 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Application.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Application.java @@ -65,10 +65,6 @@ public class Application extends BaseDomain implements Artifact { @JsonView({Views.Public.class, Git.class}) boolean appIsExample = false; - @Transient - @JsonView(Views.Public.class) - long unreadCommentThreads; - @JsonView(Views.Internal.class) String clonedFromApplicationId;