Skip to content

Commit

Permalink
Rename placeholder text from 'PlaceHolder goes here' to 'placeHolder' (
Browse files Browse the repository at this point in the history
…#5738)

Signed-off-by: Bhargav <[email protected]>
  • Loading branch information
vexora-0 committed Aug 4, 2024
1 parent efac1be commit 8234fc6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const TextInputGuidance = () => {
</p>
<Row Hcenter>
<SistentThemeProvider initialMode={isDark ? "dark" : "light"}>
<Input placeholder="Placeholder goes here" />
<Input placeholder="Placeholder" />
</SistentThemeProvider>
</Row>
<h3>Multiline</h3>
Expand All @@ -91,7 +91,7 @@ export const TextInputGuidance = () => {
</p>
<Row Hcenter>
<SistentThemeProvider initialMode={isDark ? "dark" : "light"}>
<Input placeholder="Placeholder goes here" multiline />
<Input placeholder="Placeholder" multiline />
</SistentThemeProvider>
</Row>
<a id="Labelling">
Expand Down
6 changes: 3 additions & 3 deletions src/sections/Projects/Sistent/components/text-input/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const SistentTextInput = () => {
</p>
<Row Hcenter>
<SistentThemeProvider initialMode={isDark ? "dark" : "light"}>
<Input placeholder="Placeholder goes here" type="text" />
<Input placeholder="Placeholder" type="text" />
</SistentThemeProvider>
</Row>
<a id="Sizes">
Expand All @@ -105,7 +105,7 @@ const SistentTextInput = () => {
<Row Hcenter>
<SistentThemeProvider initialMode={isDark ? "dark" : "light"}>
<Input
placeholder="Placeholder goes here"
placeholder="Placeholder"
type="text"
size="medium"
/>
Expand All @@ -120,7 +120,7 @@ const SistentTextInput = () => {
<Row Hcenter>
<SistentThemeProvider initialMode={isDark ? "dark" : "light"}>
<Input
placeholder="Placeholder goes here"
placeholder="Placeholder"
type="text"
size="small"
/>
Expand Down

0 comments on commit 8234fc6

Please sign in to comment.