Skip to content

Commit

Permalink
upd sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
faheelsattar committed Nov 5, 2024
1 parent 6e93231 commit f15b447
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/cypress/components/SearchBar.cy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('<SearchBar /> and <Transaction /> data display test', () => {
path="/"
element={
<SearchBar
placeholder="Search by transaction Hash"
placeholder="Search by transaction hash"
value={searchQuery}
onChange={handleSearchChange}
/>
Expand All @@ -49,7 +49,7 @@ describe('<SearchBar /> and <Transaction /> data display test', () => {

mount(<TestComponent />);

cy.get('input[placeholder="Search by transaction Hash"]', { timeout: 10000 })
cy.get('input[placeholder="Search by transaction hash"]', { timeout: 10000 })
.should('exist')
.should('be.visible')
.type(`${txHash}{enter}`, { force: true });
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/ResponsiveLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const ResponsiveLayout: FC<ResponsiveLayoutProps> = ({ children }) => {
<Box component="main" sx={mainStyles}>
<Box sx={{ display: 'flex', justifyContent: 'flex-start', alignItems: 'center', mb: 2, padding: 0 }}>
<SearchBar
placeholder="Search by transaction Hash"
placeholder="Search by transaction hash"
value={searchQuery}
onChange={handleSearchChange}
/>
Expand Down

0 comments on commit f15b447

Please sign in to comment.