From 4d3655bc6cd742c48c4e7efa4bbd74d317579214 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sat, 28 Oct 2023 22:22:10 -0400 Subject: [PATCH] Remove usage of .at() for browser compat --- app/stores/AuthStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/stores/AuthStore.ts b/app/stores/AuthStore.ts index e7995819f..aaf472cc0 100644 --- a/app/stores/AuthStore.ts +++ b/app/stores/AuthStore.ts @@ -157,7 +157,7 @@ export default class AuthStore extends Store { /** The current team */ @computed get team() { - return this.orderedData.at(0); + return this.orderedData[0]; } /** The current team's policies */