Skip to content

Commit d67776b

Browse files
authored
fix(playground): add missing historical argument (#76)
1 parent e65b65d commit d67776b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

playground/events.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
let cconfig = new ClientConfig(config.rpcUrl, config.toriiUrl, config.relayUrl, config.worldAddress);
3131
const client = await createClient(cconfig);
3232

33+
const is_historical = false;
34+
3335
let events = await client.getEventMessages({
3436
limit: 10,
3537
offset: 0,
@@ -43,12 +45,10 @@
4345
models: []
4446
}
4547
}
46-
});
48+
}, is_historical);
4749

4850
updateManager.displayUpdate('fetch', events);
4951

50-
const is_historical = false;
51-
5252
const subscription = await client.onEventMessageUpdated(
5353
[
5454
{

0 commit comments

Comments
 (0)