We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a40ecae commit 8f007e3Copy full SHA for 8f007e3
src/components/Navbar.tsx
@@ -57,6 +57,7 @@ export const NavBar = () => {
57
type="search"
58
name="query"
59
placeholder="Search"
60
+ {...(router.query.query && { defaultValue: router.query.query })}
61
/>
62
<button type="submit" className="absolute right-0 top-0 mt-5 mr-4">
63
<svg
src/pages/settings/imports.tsx
@@ -334,7 +334,7 @@ const Imports = () => {
334
</>
335
) : (
336
<h4 className="my-10 text-center text-neutral-400">
337
- Importing is currently disabled
+ Importing is currently not available.
338
</h4>
339
)}
340
<Divider className="my-5 border-neutral-600" />
0 commit comments