Skip to content

Commit

Permalink
Remove unneeded todos.
Browse files Browse the repository at this point in the history
  • Loading branch information
HarelM committed Jun 14, 2023
1 parent bcb0db9 commit f61c453
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
<mat-form-field class="search-input-container" subscriptSizing="dynamic">
<input type="text" matInput #searchFromInput class="control-container-item" [formControl]="searchFrom" [matAutocomplete]="autoFrom" placeholder="{{resources.searchPlaceHolder}}" [dir]="resources.getDirection(fromContext.searchTerm)" (focus)="hasFocus = true" (blur)="hasFocus = false">
<mat-autocomplete positionY="below" autoActiveFirstOption="true" #autoFrom="matAutocomplete" [displayWith]="displayResults">
<!--HM TODO: bring tooltip back, remove full content? matTooltip="{{result.displayName}}" matTooltipPosition="left"-->
<mat-option *ngFor="let result of fromContext.searchResults" [value]="result" [ngClass]="[resources.getTextAlignment(result.title), 'search-result-option']" [dir]="resources.getDirection(result.title)">
<i *ngIf="result.icon" class="fa" [ngClass]="result.icon" [style.color]="result.iconColor"></i>
<span>{{result.displayName}}</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ export class PurchaseService {
}
this.loggingService.info("[Store] Logged in: " + userInfo.id);
this.initializeCdvStore(userInfo.id);
// HM TODO: remove this once we make sure the unverified is working as expected.
this.offlineFilesDownloadService.isExpired().then((isExpired) => {
if (isExpired) {
this.loggingService.debug("[Store] Product is expired from server");
Expand Down Expand Up @@ -80,7 +79,7 @@ export class PurchaseService {
}
receipt.finish();
});
CdvPurchase.store.verbosity = CdvPurchase.LogLevel.DEBUG;
CdvPurchase.store.verbosity = CdvPurchase.LogLevel.WARNING;
await CdvPurchase.store.initialize();
}

Expand Down

0 comments on commit f61c453

Please sign in to comment.