Skip to content

Commit bda0db5

Browse files
committed
fix: type=url limitation
1 parent 99e14f5 commit bda0db5

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

packages/web/src/components/embed/EmbedBadgeInput.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ export function EmbedBadgeInput() {
120120
<Input
121121
placeholder="org/repo or GitHub URL"
122122
value={repoInput}
123-
type="url"
124123
className="border-0 bg-transparent px-3 text-base shadow-none"
125124
onChange={(e) => {
126125
const newValue = e.target.value;

packages/web/src/components/repos/SubscribePublicRepo.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ export function SubscribePublicRepo() {
155155
placeholder="org/repo or GitHub URL"
156156
value={field.state.value}
157157
onBlur={field.handleBlur}
158-
type="url"
159158
onChange={(e) => {
160159
const newValue = e.target.value;
161160
field.handleChange(newValue);

0 commit comments

Comments
 (0)