@blocklet/pages-kit-block-studio 0.0.9 → 0.0.10

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.
@@ -118,7 +118,7 @@ router.get('/api/pages', (req, res) => {
118
118
  return res.status(400).json({ message: 'did is required' });
119
119
  }
120
120
 
121
- const data = tempStates.find((state) => state.did === did);
121
+ const data = tempStates.find((state) => state.blockletId === did);
122
122
 
123
123
  res.json(data);
124
124
  });