Commit 90546fd8 authored by Zach Pomerantz's avatar Zach Pomerantz Committed by GitHub

fix: rm non-serializable data (#6430)

parent bee558fa
...@@ -143,7 +143,7 @@ export const routingApi = createApi({ ...@@ -143,7 +143,7 @@ export const routingApi = createApi({
} catch (error) { } catch (error) {
// TODO: fall back to client-side quoter when auto router fails. // TODO: fall back to client-side quoter when auto router fails.
// deprecate 'legacy' v2/v3 routers first. // deprecate 'legacy' v2/v3 routers first.
return { error: { status: 'CUSTOM_ERROR', error: error.toString(), data: error } } return { error: { status: 'CUSTOM_ERROR', error: error.toString() } }
} }
}, },
keepUnusedDataFor: ms`10s`, keepUnusedDataFor: ms`10s`,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment