Hello, I'm using the comments plugin, but I can't see the name, avatar, email

Hello, I’m using the comments plugin, but I can’t see the name, avatar and email information of the users on the front side without being a member of strapiye. it comes to the dashboard but. how do I solve this problem? how do I send a request? it’s like this now

async function submitComment() {
await fetchBlogDetail();
const commentData = {
author: {
id: ‘1’,
name: commentAuthorName.value,
email: commentAuthorEmail.value,
avatar: ‘https://www.gravatar.com/avatar/205e460b479e2e5b48aec07710c08d50
},
content: commentContent.value
};
const commentsUrl = http://localhost:1337/api/comments/api::blog.blog:${postId.value};
try {
await fetch(commentsUrl, {
method: ‘POST’,
headers: {
‘Content-Type’: ‘application/json’,
Authorization: Bearer ${API_TOKEN},
},
body: JSON.stringify(commentData),
});
await fetchComments();
} catch (error) {
console.error(‘Error submitting comment:’, error);
}
}

This topic has been created from a Discord post (1225776695009611816) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

Hey there. Could you please check your configuration in your plugin.js file of your strapi project and ensure that all the attributes you want about the author are not included in the blockedAuthorProps array in the section of the comments plugin of your configuration of the strapi instance