Skip to content

Commit

Permalink
Try to make build pass
Browse files Browse the repository at this point in the history
  • Loading branch information
gmercier42 committed Dec 11, 2023
1 parent 4659b22 commit 5970419
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions webapp/app/pods/logged-in/project/edit/new/controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import GlobalState from 'accent-webapp/services/global-state';
import FlashMessages from 'ember-cli-flash/services/flash-messages';
import RouterService from '@ember/routing/router-service';

interface PushStringsProps {
targetVersion: string;
specificVersion: string | null;
}
// interface PushStringsProps {
// targetVersion: string;
// specificVersion: string | null;
// }

export default class AzurePushController extends Controller {
@tracked
Expand Down Expand Up @@ -44,13 +44,13 @@ export default class AzurePushController extends Controller {
}

@action
async pushStrings(props: PushStringsProps) {
const {targetVersion, specificVersion} = props;
async pushStrings() {
// const {targetVersion, specificVersion} = props;

await this.delay(1000);

console.log('TODO: call the pushStrings mutation');
console.log(props);
// console.log('TODO: call the pushStrings mutation');
// console.log(props);

this.router.transitionTo(
'logged-in.project.edit.service-integrations',
Expand Down

0 comments on commit 5970419

Please sign in to comment.