Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Sort new keywords at the front
Browse files Browse the repository at this point in the history
  • Loading branch information
justjanne committed Jun 14, 2023
1 parent 4db41a7 commit b70432c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ export default function NotificationSettings2(): JSX.Element {
onAdd={(keyword) => {
reconcile({
...model,
keywords: [...model.keywords, keyword],
keywords: [keyword, ...model.keywords],
});
}}
onRemove={(keyword) => {
Expand Down

0 comments on commit b70432c

Please sign in to comment.