@dbx-tools/appkit-mastra 0.1.36 → 0.1.38

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.
@@ -297,7 +297,7 @@ export class MastraPlugin extends Plugin {
297
297
  };
298
298
  router.get("/suggestions", handleSuggestions);
299
299
  router.get("/suggestions/:agentId", handleSuggestions);
300
- router.use("", (req, res, next) => {
300
+ router.use((req, res, next) => {
301
301
  if (!this.mastraApp)
302
302
  return res.status(503).end();
303
303
  return this.userScopedSelf(req).mastraApp(req, res, next);