Skip to content

Commit

Permalink
Merge pull request #11 from Keyspace-cloud/fix-username
Browse files Browse the repository at this point in the history
fix: username
  • Loading branch information
nimish-ks authored Jan 17, 2023
2 parents a90ae9c + e11d111 commit 9b0b7e5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "keyspace-plugin",
"version": "1.0.4",
"version": "1.0.5",
"private": false,
"dependencies": {
"@chakra-ui/icons": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/App/Vault/Forms/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ export const LoginForm = (props: LoginFormProps) => {
<Input
id="username"
variant="filled"
value={username?.length}
value={username || undefined }
onChange={(event) =>
setUsername(
event.target.value
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name" :"Keyspace",
"description": "Keyspace wallet browser add-on",
"version": "1.0.4",
"version": "1.0.5",
"manifest_version": 2,
"icons": {
"16": "./images/favicon-16x16.png",
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.v3.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name" :"Keyspace",
"description": "Keyspace wallet browser add-on",
"version": "1.0.4",
"version": "1.0.5",
"manifest_version": 3,
"icons": {
"16": "./images/favicon-16x16.png",
Expand Down

0 comments on commit 9b0b7e5

Please sign in to comment.