diff --git a/packages/neos-ui-redux-store/src/UI/SyncWorkspaceModal/index.ts b/packages/neos-ui-redux-store/src/UI/SyncWorkspaceModal/index.ts
index e3ab4e4864..734b96f003 100644
--- a/packages/neos-ui-redux-store/src/UI/SyncWorkspaceModal/index.ts
+++ b/packages/neos-ui-redux-store/src/UI/SyncWorkspaceModal/index.ts
@@ -21,17 +21,17 @@ export enum actionTypes {
}
/**
- * Opens the add node modal.
+ * Opens the sync workspace modal
*/
const open = () => createAction(actionTypes.OPEN);
/**
- * Closes the add node modal.
+ * Closes the sync workspace modal
*/
const cancel = () => createAction(actionTypes.CANCEL);
/**
- * Closes the add node modal.
+ * Triggers the workspace rebase
*/
const apply = () => createAction(actionTypes.APPLY);
diff --git a/packages/neos-ui/src/Containers/PrimaryToolbar/WorkspaceSync/index.js b/packages/neos-ui/src/Containers/PrimaryToolbar/WorkspaceSync/index.js
index 312403897f..e87e7e40f4 100644
--- a/packages/neos-ui/src/Containers/PrimaryToolbar/WorkspaceSync/index.js
+++ b/packages/neos-ui/src/Containers/PrimaryToolbar/WorkspaceSync/index.js
@@ -69,37 +69,4 @@ export default class WorkspaceSync extends PureComponent {
}
return (null);
}
-
- /* getTranslatedMainButton(baseWorkspaceTitle = '') {
- const {
- publishableNodesInDocument,
- isSaving,
- isPublishing,
- isDiscarding
- } = this.props;
- const canPublishLocally = publishableNodesInDocument && (publishableNodesInDocument.length > 0);
-
- if (isSaving) {
- return ;
- }
-
- if (isPublishing) {
- return ;
- }
-
- if (isDiscarding) {
- return 'Discarding...';
- }
-
- if (canPublishLocally) {
- return ;
- }
-
- return (
-
-
- {(baseWorkspaceTitle ? ' - ' + baseWorkspaceTitle : '')}
-
- );
- } */
}