diff --git a/app/client/src/ce/pages/Applications/index.tsx b/app/client/src/ce/pages/Applications/index.tsx index 39dac179be..f56d574e27 100644 --- a/app/client/src/ce/pages/Applications/index.tsx +++ b/app/client/src/ce/pages/Applications/index.tsx @@ -49,7 +49,6 @@ import { import { AppIconCollection, Classes, - EditableText, MenuItem as ListItem, Text, TextType, @@ -450,9 +449,6 @@ export const WorkspaceNameWrapper = styled.div<{ disabled?: boolean }>` color: ${(props) => props.theme.colors.applications.iconColor}; } `; -export const WorkspaceRename = styled(EditableText)` - padding: 0 2px; -`; export const NoSearchResultImg = styled.img` margin: 1em; diff --git a/app/client/src/ce/sagas/WorkspaceSagas.ts b/app/client/src/ce/sagas/WorkspaceSagas.ts index 6fd243e9e2..d1f8c7a1ed 100644 --- a/app/client/src/ce/sagas/WorkspaceSagas.ts +++ b/app/client/src/ce/sagas/WorkspaceSagas.ts @@ -264,7 +264,7 @@ export function* saveWorkspaceSaga(action: ReduxAction) { yield put({ type: ReduxActionErrorTypes.SAVE_WORKSPACE_ERROR, payload: { - error: (error as Error).message, + error, }, }); }