## Description `flagsmith.identity` is empty after executing `flagsmith.identify` ```js await flagsmith.identify(accountId); console.log(flagsmith.identity); // undefined ``` ```js if (!flagsmith.identity) { // always true because identity is undefined await flagsmith.identify(accountId); } ``` ## Context I am trying to upgrade flagsmith from 3.24.0 to 9. The problem is reproduced from version 5.0.0 and later. Is it a bug or am I doing something wrong?