Skip to content

Commit

Permalink
Merge branch 'main' into phantom-rebrand
Browse files Browse the repository at this point in the history
  • Loading branch information
lochie authored Jul 17, 2023
2 parents 140b1fb + ffc1c15 commit 3440921
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ const ConnectWithInjector: React.FC<{
? {
name: Object.keys(connector.extensions)[0],
label:
Object.keys(connector.extensions)[0].charAt(0).toUpperCase() +
Object.keys(connector.extensions)[0].slice(1), // Capitalise first letter, but this might be better suited as a lookup table
Object.keys(connector.extensions)[0]?.charAt(0).toUpperCase() +
Object.keys(connector.extensions)[0]?.slice(1), // Capitalise first letter, but this might be better suited as a lookup table
url: connector.extensions[Object.keys(connector.extensions)[0]],
}
: undefined;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ const ConnectWithQRCode: React.FC<{
? {
name: Object.keys(connectorInfo?.extensions)[0],
label:
Object.keys(connectorInfo?.extensions)[0].charAt(0).toUpperCase() +
Object.keys(connectorInfo?.extensions)[0].slice(1), // Capitalise first letter, but this might be better suited as a lookup table
Object.keys(connectorInfo?.extensions)[0]?.charAt(0).toUpperCase() +
Object.keys(connectorInfo?.extensions)[0]?.slice(1), // Capitalise first letter, but this might be better suited as a lookup table
url: connectorInfo?.extensions[
Object.keys(connectorInfo?.extensions)[0]
],
Expand Down

0 comments on commit 3440921

Please sign in to comment.