Skip to content

Commit

Permalink
issue #35: minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vivalareda committed Dec 5, 2023
1 parent 745b51e commit 08dbbb4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 17 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/gh-pages-deployment.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/_versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface TsAppVersion {
gitTag?: string;
};
export const versions: TsAppVersion = {
version: '0.1.0',
version: '0.1.1',
name: 'finesse-frontend',
versionDate: '2023-11-24T21:13:58.324Z',
gitCommitHash: '6924943e',
Expand Down
2 changes: 1 addition & 1 deletion src/components/searchbar/SearchBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const SearchBar: React.FC<SearchBarProps> = ({ term }) => {

useEffect(() => {
if (typeof term === "undefined") {
setPreviousSearchQuery("Type to search !");
setPreviousSearchQuery("Type to search...");
} else {
setPreviousSearchQuery(term);
}
Expand Down

0 comments on commit 08dbbb4

Please sign in to comment.