fix(profile): passed id is a jwt

This commit is contained in:
Philipp Dormann 2024-12-11 22:43:02 +01:00
parent dee1b7a6ea
commit dbe707b062
Signed by: philipp
GPG Key ID: 3BB9ADD52DCA4314

View File

@ -527,7 +527,7 @@ const toast = useToast();
const props = defineProps({
token: String,
});
const accesstoken = atob(props.token);
const accesstoken = props.token;
axios
.get(`${config.baseurl}api/runners/me/${accesstoken}`)
.then(({ data }) => {