Skip to content

Commit

Permalink
chore: ui
Browse files Browse the repository at this point in the history
  • Loading branch information
moughxyz committed Nov 20, 2023
1 parent c0d3a3d commit 75bff5e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ const ChangeEditorMenu: FunctionComponent<ChangeEditorMenuProps> = ({
<div className="px-3">
<h2 className="text-base font-bold">Choose a note type</h2>
{unableToFindEditor && (
<p className="mr-2 pb-2 pt-1 text-xs text-warning md:pb-1">
<p className="mr-2 pt-1 text-xs text-warning">
Unable to find system editor for this note. Select Manage Plugins to reinstall this editor.
</p>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,9 @@ const Moments: FunctionComponent<Props> = ({ application }: Props) => {
<PreferencesSegment>
<Text>
Moments lets you capture photos of yourself throughout the day, creating a visual record of your life, one
photo at a time.
</Text>

<Text className="mt-3">
Using your webcam or mobile selfie-cam, Moments takes a photo of you every half hour, keeping a complete
record of your day. All photos are end-to-end encrypted and stored in your private account. Enable Moments
on a per-device basis to get started.
photo at a time. Using your webcam or mobile selfie-cam, Moments takes a photo of you every half hour. All
photos are end-to-end encrypted and stored in your files. Enable Moments on a per-device basis to get
started.
</Text>

<div className="mt-5 flex flex-row flex-wrap gap-3">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ export function getDropdownItemsForAllEditors(application: WebApplicationInterfa
options.push(
...application.componentManager
.thirdPartyComponentsForArea(ComponentArea.Editor)
.filter((component) => FindNativeFeature(component.identifier) === undefined)
.filter((component) => {
const nativeFeature = FindNativeFeature(component.identifier)
return !nativeFeature || nativeFeature.deprecated
})
.map((editor): EditorOption => {
const [iconType, tint] = getIconAndTintForNoteType(editor.noteType)

Expand Down

0 comments on commit 75bff5e

Please sign in to comment.