diff --git a/src/app/components/News.tsx b/src/app/components/News.tsx
index bb8373e..93e0683 100644
--- a/src/app/components/News.tsx
+++ b/src/app/components/News.tsx
@@ -13,13 +13,15 @@ export default function News() {
-
- eeXiv 1.0 has been released! All basic features like search and
- document viewing are available.
+ eeXiv 2.0 has been released! The site should feel significantly more
+ responsive. Data cacheing has also been implemented so search results
+ and documents will load instantly the second time.
- - eeXiv is currently under active development!
+ - Mobile support is currently in beta.
-
- There may be major updates, breaking changes, or weird bugs. Report
- bugs, suggest new features, or give us feedback at{' '}
+ eeXiv is currently under active development! There may be major
+ updates, breaking changes, or weird bugs. Report bugs, suggest new
+ features, or give us feedback at{' '}
our issue tracker.
diff --git a/src/app/components/SearchBar.tsx b/src/app/components/SearchBar.tsx
index d1c4ccb..8218bbd 100644
--- a/src/app/components/SearchBar.tsx
+++ b/src/app/components/SearchBar.tsx
@@ -17,7 +17,6 @@ export default function SearchBar() {
const setSearchBarStore = useSearchBarStore((state) => state.setSearchInput)
const handleClick = (event: React.MouseEvent) => {
- event.preventDefault()
navigate(`/search?q=${searchBarStore.split(' ').join('+')}`)
}
@@ -27,7 +26,6 @@ export default function SearchBar() {
const handleKeyPress = (e: React.KeyboardEvent) => {
if (e.key === 'Enter') {
- e.preventDefault()
navigate(`/search?q=${searchBarStore.split(' ').join('+')}`)
}
}