I am trying to fetch data from an endpoint in my project, but continue to get a Promise back instead of the actual data. First of all I should say that I am not getting an error, however I just don't understand why I couldn't handle the returned data from the api call outside of the function.
So I have this function fetchUser that makes a call to the API, and returned the data successfully when I log it to the console. But what I want is to be able to use this data in my JSX. Below is the function call to the API route:
 const fetchUser = async () => {
    const baseUrl = "/api/user";
    const response = await axios.get(baseUrl);
    const { data } = response;
    const role = data.map((item) => {
      const { role } = item;
      return role;
    });
    return role;
  };
  const userRole = fetchUser().then((result) => {
    console.log(result) // returned the data as I expected and wanted (e.g: [Brand])
    return result;
  });
  console.log("Role", userRole); // Returned a 'Promise'(as shown below)
Role:
Promise {<pending>}
[[Prototype]]
Promise
[[PromiseState]]
"fulfilled"
[[PromiseResult]]
Array(1)
Please point me in the right direction to resolve this issue
 
    