@shopify/app-bridge-react, getting Error: Host not provided after upgrading past version 2.0.25

Having the same issue in my project with version 2.0.30

"@shopify/app-bridge-react": "^2.0.30",
    "@shopify/app-bridge-utils": "^2.0.30",

Using the code from documentation :

function Component() {
  const app = useAppBridge();
  const redirect = Redirect.create(app);
   
  . 
  .
  .

  redirect.dispatch(Redirect.Action.APP, `/route/${id}`);
}