layout fixes for edit

This commit is contained in:
Fran Jurmanovic
2021-08-02 04:31:59 -07:00
parent 4abcba0143
commit 86a8852784
15 changed files with 130 additions and 17 deletions

View File

@@ -6,7 +6,7 @@ class SubscriptionService extends BaseService {
}
endSubscription = (id) => {
return this.appService.put(this.endpoint + `/end/${id || ''}`, null, null);
return this.appService.post(this.endpoint + `/end`, {id}, null);
};
}