Skip to content

Commit

Permalink
Merge branch 'develop-mame' into purge-reversi
Browse files Browse the repository at this point in the history
  • Loading branch information
adzukimame committed Oct 17, 2024
2 parents 74286f5 + 8918c8e commit 8b0317c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/frontend/src/components/MkChart.stories.impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ const Base = {
msw: {
handlers: [
...commonHandlers,
http.get('/api/charts/federation', getChartResolver(
http.post('/api/charts/federation', getChartResolver(
['deliveredInstances', 'inboxInstances', 'stalled', 'sub', 'pub', 'pubsub', 'subActive', 'pubActive'],
)),
http.get('/api/charts/notes', getChartResolver(
http.post('/api/charts/notes', getChartResolver(
['local.total', 'remote.total'],
{ accumulate: true },
)),
http.get('/api/charts/drive', getChartResolver(
http.post('/api/charts/drive', getChartResolver(
['local.incSize', 'local.decSize', 'remote.incSize', 'remote.decSize'],
{ mulMap: { 'local.incSize': 1e7, 'local.decSize': 5e6, 'remote.incSize': 1e6, 'remote.decSize': 5e5 } },
)),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import MkCode_renderer from './MkCode.renderer.vue';
void MkCode_renderer;

0 comments on commit 8b0317c

Please sign in to comment.