Skip to content

Commit ab19ead

Browse files
committed
fix typo in storage getter
1 parent a3ed8be commit ab19ead

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/backend/src/storage.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,7 @@ export default () => {
4545
router.get('/:ensName', async (req, res, next) => {
4646
try {
4747
const account = normalizeEnsName(req.params.ensName);
48-
const userStorage = await req.app.locals.db.getUserStorageOld(
49-
account,
50-
);
48+
const userStorage = await req.app.locals.db.getUserStorage(account);
5149
return res.json(userStorage);
5250
} catch (e) {
5351
next(e);

0 commit comments

Comments
 (0)