diff --git a/apps/repl/app/components/limber/share.gts b/apps/repl/app/components/limber/share.gts index f83b6fef2..77d76aa14 100644 --- a/apps/repl/app/components/limber/share.gts +++ b/apps/repl/app/components/limber/share.gts @@ -24,57 +24,63 @@ const isShowing = cell(false); const { Boolean } = globalThis; -export class Share extends Component { +export const Share = + + + Share + + + + + {{#if m.isOpen}} + + {{/if}} + + +; + +class ShareModal extends Component<{ onCancel: () => void }> { - - - Share - - - - - - - Share - - - - - - - {{#if this.error}} - {{this.error}} - {{/if}} - - - - {{#unless this.shortUrl}} - Create - {{/unless}} - - - - will copy a shortened URL to your clipboard. - - - - - - + + + Share + + + + + + + {{#if this.error}} + {{this.error}} + {{/if}} + + + + {{#unless this.shortUrl}} + Create + {{/unless}} + + + + will copy a shortened URL to your clipboard. + + + + @service declare router: RouterService;