diff --git a/pkg/interface/src/views/apps/links/components/settings.js b/pkg/interface/src/views/apps/links/components/settings.js index 01d5389c20..d0c9bcab11 100644 --- a/pkg/interface/src/views/apps/links/components/settings.js +++ b/pkg/interface/src/views/apps/links/components/settings.js @@ -9,6 +9,8 @@ import SidebarSwitcher from '~/views/components/SidebarSwitch'; import { MetadataSettings } from '~/views/components/metadata/settings'; +import { Box, Text, Button, Col, Row } from '@tlon/indigo-react'; + export class SettingsScreen extends Component { constructor(props) { super(props); @@ -77,16 +79,15 @@ export class SettingsScreen extends Component { return null; } else { return ( -
-

Remove Collection

-

- Remove this collection from your collection list. -

- + + Remove Collection + + Remove this collection from your collection list + +
+ + ); } } @@ -98,16 +99,15 @@ export class SettingsScreen extends Component { return null; } else { return ( -
-

Delete Collection

-

- Delete this collection, for you and all group members. -

- + + Delete collection + + Delete this collection, for you and all group members + +
+ + ); } } @@ -123,21 +123,23 @@ export class SettingsScreen extends Component { return ; } else if (!props.graphResource) { props.history.push('/~link'); - return
; + return ; } return ( -
-
+ + {'⟵ All Collections'} -
-
+ + -

+ {title} -

+ -
-
-

Collection Settings

+ + + Collection Settings {this.renderRemove()} {this.renderDelete()} -
-
+
+ ); } }