Skip to content

Commit

Permalink
fixed watch url for service binding
Browse files Browse the repository at this point in the history
  • Loading branch information
tulsiojha committed Nov 27, 2024
1 parent a528aeb commit b200332
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,11 +254,10 @@ const ServiceBindingsResourcesV2 = ({ items = [] }: { items: BaseType[] }) => {

useWatchReload(
items.map((i) => {
return `account:${account}.environment:${environment}.service_binding:${parseName(i)}`;
return `account:${parseName(account)}.environment:${parseName(environment)}.service_binding:${parseName(i)}`;
}),
);


const removeIntercept = async (item: BaseType) => {
try {
if (item.interceptStatus && item.spec?.serviceRef) {
Expand Down

0 comments on commit b200332

Please sign in to comment.