@remix-run/router 1.16.0 → 1.16.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/router v1.16.0
2
+ * @remix-run/router v1.16.1
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -3458,7 +3458,8 @@
3458
3458
  async function queryRoute(request, _temp4) {
3459
3459
  let {
3460
3460
  routeId,
3461
- requestContext
3461
+ requestContext,
3462
+ unstable_dataStrategy
3462
3463
  } = _temp4 === void 0 ? {} : _temp4;
3463
3464
  let url = new URL(request.url);
3464
3465
  let method = request.method;
@@ -3487,7 +3488,7 @@
3487
3488
  pathname: location.pathname
3488
3489
  });
3489
3490
  }
3490
- let result = await queryImpl(request, location, matches, requestContext, null, false, match);
3491
+ let result = await queryImpl(request, location, matches, requestContext, unstable_dataStrategy || null, false, match);
3491
3492
  if (isResponse(result)) {
3492
3493
  return result;
3493
3494
  }