Skip to content

Commit

Permalink
fix: minor copy details
Browse files Browse the repository at this point in the history
  • Loading branch information
oreHGA committed Jun 1, 2024
1 parent b935f32 commit bd17e7c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mobile/src/pages/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export function HomeScreen() {
// only run this function if user has consented for FusionCopilot
const copilotConsent = accountContext?.userPreferences.enableCopilot!;
if (copilotConsent !== true)
return "Use Fusion Copilot to get summaries and personalized recommendations.";
return "Turn on Fusion Copilot in settings page to get summaries and personalized recommendations.";

const filteredPrompts = savedPrompts!.filter(
(prompt) => prompt.additionalMeta?.category === category
Expand Down
2 changes: 1 addition & 1 deletion mobile/src/pages/onboarding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const OnboardingScreen = () => {
{
title: "Your Prompts and Responses are saved locally on your device",
description:
"Your privacy is important to us, so we’ve set up an anonymous account just for you. This is your unique identity on Fusion.",
"We've set up an anonymous identity for you on Fusion. Your data is stored on your device.",
image: require("../../assets/onboarding/prompt_responses.png"),
},
{
Expand Down
9 changes: 9 additions & 0 deletions mobile/src/pages/prompt-entry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,15 @@ export function PromptEntryScreen() {
if (prompt?.responseType === "customOptions" && customOptions) {
setCustomOptions(customOptions.split(";"));
}

// write event to app insights
appInsights.trackPageView({
name: "PromptEntry",
properties: {
identifier: maskPromptId(prompt?.uuid!),
userNpub: accountContext?.userNpub,
},
});
}, [prompt]);

const handleCustomOptionChange = (option: string) => {
Expand Down
4 changes: 2 additions & 2 deletions mobile/src/pages/quests.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ export function QuestsScreen() {
className="w-32 h-32"
/>
<Text className="font-sans-light max-w-xs text-center text-white text-base">
Quests allow you to share your data while doing activities with
others.
Share changes in your health and behavior with others. Join research
studies.
</Text>
<Button
title="Join a Quest"
Expand Down

0 comments on commit bd17e7c

Please sign in to comment.