remove teletype from welcome

This commit is contained in:
Daeraxa 2023-11-07 00:09:00 +00:00
parent d42bae7c28
commit 025c1b1b11

View File

@ -10,7 +10,6 @@ export default class GuideView {
this.didClickProjectButton = this.didClickProjectButton.bind(this);
this.didClickGitButton = this.didClickGitButton.bind(this);
this.didClickGitHubButton = this.didClickGitHubButton.bind(this);
this.didClickTeletypeButton = this.didClickTeletypeButton.bind(this);
this.didClickPackagesButton = this.didClickPackagesButton.bind(this);
this.didClickThemesButton = this.didClickThemesButton.bind(this);
this.didClickStylingButton = this.didClickStylingButton.bind(this);
@ -103,36 +102,6 @@ export default class GuideView {
</div>
</details>
<details
className="welcome-card"
{...this.getSectionProps('teletype')}
>
<summary className="welcome-summary icon icon-radio-tower">
Collaborate in real time with{' '}
<span class="welcome-highlight">Teletype</span>
</summary>
<div className="welcome-detail">
<p>
<img
className="welcome-img"
src="atom://welcome/assets/code.svg"
/>
</p>
<p>
Share your workspace with team members and collaborate on code
in real time.
</p>
<p>
<button
onclick={this.didClickTeletypeButton}
className="btn btn-primary inline-block"
>
Install Teletype for {this.brand}
</button>
</p>
</div>
</details>
<details
className="welcome-card"
{...this.getSectionProps('packages')}
@ -449,8 +418,4 @@ export default class GuideView {
didClickSnippetsButton() {
atom.workspace.open('atom://.pulsar/snippets', { split: 'left' });
}
didClickTeletypeButton() {
atom.workspace.open('atom://config/packages/teletype', { split: 'left' });
}
}