fix(result): 更新成功组件中的提示文字

- 将提示文字“免费保存”修改为“免费保存到相册”,提升用户理解
- 确保信息传达的准确性,增强用户体验
This commit is contained in:
iHeyTang 2025-09-11 15:25:58 +08:00
parent 64df42678f
commit 74b2a6ee94
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ const SuccessComponent: React.FC<SuccessComponentProps> = ({ task }) => {
return '广告加载中...';
}
if (!adAvailable) {
return '免费保存';
return '免费保存到相册';
}
return '观看广告并保存到相册';
};