feat(frontend): rephrase from Url to from Website's page (#2683)

# Description

Please include a summary of the changes and the related issue. Please
also include relevant motivation and context.

## Checklist before requesting a review

Please delete options that are not relevant.

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented hard-to-understand areas
- [ ] I have ideally added tests that prove my fix is effective or that
my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged

## Screenshots (if appropriate):
This commit is contained in:
Antoine Dewez 2024-06-17 13:40:07 +02:00 committed by GitHub
parent bfec25be0e
commit b464ed3660
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ export const KnowledgeToFeed = ({
).length,
},
{
label: "Websites",
label: "Websites' page",
isSelected: selectedTab === "Websites",
onClick: () => setSelectedTab("Websites"),
iconName: "website",

View File

@ -9,7 +9,7 @@ export const FromWebsites = (): JSX.Element => {
return (
<div className={styles.from_document_wrapper}>
<TextInput
label="Enter a website URL"
label="Enter a website's page URL"
setInputValue={setUrlToCrawl}
inputValue={urlToCrawl}
iconName="followUp"