Skip to content

Commit

Permalink
fix: No hint on how to add multiple keywords.
Browse files Browse the repository at this point in the history
resolves: #3
  • Loading branch information
towfiqi committed Dec 1, 2022
1 parent 5acbe18 commit 9fa80cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/keywords/AddKeywords.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const AddKeywords = ({ closeModal, domain, keywords }: AddKeywordsProps) => {
<div>
<textarea
className='w-full h-40 border rounded border-gray-200 p-4 outline-none focus:border-indigo-300'
placeholder='Type or Paste Keywords here...'
placeholder="Type or Paste Keywords here. Insert Each keyword in a New line."
value={newKeywordsData.keywords}
onChange={(e) => setNewKeywordsData({ ...newKeywordsData, keywords: e.target.value })}>
</textarea>
Expand Down

0 comments on commit 9fa80cf

Please sign in to comment.