Skip to content

Commit

Permalink
fix razroo url so correct
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlieGreenman committed Nov 12, 2024
1 parent 7243130 commit 6e9270f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions projects-webview-ui/src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<vscode-button class="App__button" [disabled]="authIsLoading || (!(selectedProjects?.length) && !(originalSelectedProjects?.length))" (click)="connectProjects(selectedProjects)">{{authIsLoading ? 'Connecting...' : (selectedProjects | connectText : originalSelectedProjects)}}</vscode-button>
<ng-container *ngIf="orgId && userId">
<label for="org_dropdown" class="App__org">
<p *ngIf="orgId !== userId"><i>You are <a href="http://razroo.com" target="_blank">logged into {{organizations.length ? (orgId | zetaOrganizations : organizations)[0].displayName : ''}}</a></i></p>
<p *ngIf="orgId === userId"><i>You are <a href="http://razroo.com" target="_blank">logged into your personal workspace</a></i></p>
<p *ngIf="orgId !== userId"><i>You are <a href="http://code.razroo.com" target="_blank">logged into {{organizations.length ? (orgId | zetaOrganizations : organizations)[0].displayName : ''}}</a></i></p>
<p *ngIf="orgId === userId"><i>You are <a href="http://code.razroo.com" target="_blank">logged into your personal workspace</a></i></p>
</label>
<vscode-dropdown formControlName="orgDropdown" (change)="changeOrgDropdownValue($event)" class="App__organizations-dropdown" id="org_dropdown">
<ng-container *ngFor="let organization of (orgId | zetaOrganizations : organizations)">
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export const RAZROO_URL = "https://vscode-auth.razroo.com";
export const RAZROO_DEV_URL = "http://localhost:3000";

export const DEV_APP_URL = "http://localhost:4200";
export const PROD_APP_URL = "https://razroo.com";
export const PROD_APP_URL = "https://code.razroo.com";
// appsync apis
export const DEV_AWS_API_KEY = "da2-mjxxlblgx5f6xgdfsvvxcnhv6e";
export const PROD_AWS_API_KEY = "da2-pineeux4cnaobnb5udeum2o5de";
Expand Down

0 comments on commit 6e9270f

Please sign in to comment.