Aksel
11/11/2024, 9:26 AMangular.module("umbraco").run([
"userService",
function (userService) {
const user = userService.getCurrentUser();
user.then((response) => {
console.log(response);
});
},
]);
However, the entire backoffice goes blank when calling : userService.getCurrentUser().
There is no errors in the console. Also the correct data from the userobject is outputted to the console. Any ideas what might be causing this? ( Umbraco version 13)Aksel
11/14/2024, 12:03 PM