Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { WebApplication } from '@/Application/WebApplication'
import StyledRadioInput from '@/Components/Radio/StyledRadioInput'
import { useState } from 'react'
import { Title } from '../../PreferencesComponents/Content'
import { Title, Text } from '../../PreferencesComponents/Content'
import PreferencesGroup from '../../PreferencesComponents/PreferencesGroup'
import PreferencesSegment from '../../PreferencesComponents/PreferencesSegment'
import { c } from 'ttag'
Expand Down Expand Up @@ -52,6 +52,12 @@ const Persistence = ({ application }: Props) => {
/>
{c('B6.Preferences.General.Label').t`The last viewed note`}
</label>
{application.isNativeMobileWeb() && (
<Text className="mt-2">
{c('B6.Preferences.General.Info')
.t`Only applies to web and desktop apps. On mobile, notes don't open automatically at launch.`}
</Text>
)}
</PreferencesSegment>
</PreferencesGroup>
)
Expand Down
Loading