@umituz/react-native-ai-generation-content 1.17.281 → 1.17.283

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-ai-generation-content",
3
- "version": "1.17.281",
3
+ "version": "1.17.283",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native with result preview components",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -107,7 +107,7 @@ export function CreationsGalleryScreen({
107
107
  const success = await repository.rate(userId, selectedCreation.id, 5);
108
108
  if (success) {
109
109
  setSelectedCreation({ ...selectedCreation, rating: 5, ratedAt: new Date() });
110
- alert.show(AlertType.SUCCESS, AlertMode.TOAST, t("rating.thankYouTitle"), t("rating.thankYouMessage"));
110
+ alert.show(AlertType.SUCCESS, AlertMode.TOAST, t("result.rateSuccessTitle"), t("result.rateSuccessMessage"));
111
111
  void refetch();
112
112
  }
113
113
  })();