Resolves once the reviewed flag has been persisted.
await markReviewed(); // sets reviewed: true
export async function markReviewed(): Promise<void> {
const state = await getReviewPromptState();
await cstorage.local.set({
[CACHE.REVIEW_PROMPT]: { ...state, reviewed: true },
});
}
Marks the prompt as answered once the user opens the reviews page, so it never appears again.