Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion adev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@
"marked": "18.0.0",
"mermaid": "11.14.0",
"ngx-progressbar": "14.0.0",
"open-in-idx": "0.1.1",
"playwright-core": "1.59.1",
"preact": "10.29.1",
"preact-render-to-string": "6.6.7",
Expand Down
8 changes: 0 additions & 8 deletions adev/src/app/editor/code-editor/code-editor.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,6 @@
<!-- launcher dropdown window -->
<ng-template #launcherMenu>
<div class="adev-editor-dropdown" cdkMenu>
<button cdkMenuItem (click)="openCurrentSolutionInFirebaseStudio()">
<span>Open in Firebase Studio </span>
<img
class="icon"
src="assets/images/tutorials/common/firebase-studio_logo.svg"
height="32"
/>
</button>
<button cdkMenuItem (click)="openCurrentCodeInStackBlitz()">Open in StackBlitz</button>
</div>
</ng-template>
Expand Down
6 changes: 0 additions & 6 deletions adev/src/app/editor/code-editor/code-editor.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ import {IconComponent} from '@angular/docs';
import {MatTooltip} from '@angular/material/tooltip';
import {DownloadManager} from '../download-manager.service';
import {LoadingStep} from '../enums/loading-steps';
import {FirebaseStudioLauncher} from '../firebase-studio-launcher.service';
import {injectEmbeddedTutorialManager} from '../inject-embedded-tutorial-manager';
import {NodeRuntimeState} from '../node-runtime-state.service';
import {StackBlitzOpener} from '../stackblitz-opener.service';
Expand Down Expand Up @@ -79,7 +78,6 @@ export class CodeEditor {
private readonly diagnosticsState = inject(DiagnosticsState);
private readonly downloadManager = inject(DownloadManager);
private readonly stackblitzOpener = inject(StackBlitzOpener);
private readonly firebaseStudioLauncher = inject(FirebaseStudioLauncher);
private readonly title = inject(Title);
private readonly location = inject(Location);
private readonly environmentInjector = inject(EnvironmentInjector);
Expand Down Expand Up @@ -189,10 +187,6 @@ export class CodeEditor {
});
}

protected openCurrentSolutionInFirebaseStudio(): void {
this.firebaseStudioLauncher.openCurrentSolutionInFirebaseStudio();
}

protected async openCurrentCodeInStackBlitz(): Promise<void> {
const title = this.title.getTitle();

Expand Down
50 changes: 0 additions & 50 deletions adev/src/app/editor/firebase-studio-launcher.service.ts

This file was deleted.

42 changes: 0 additions & 42 deletions adev/src/assets/images/tutorials/common/firebase-studio_logo.svg

This file was deleted.

Loading