Skip to content

Commit 86ec355

Browse files
committed
fix: web embed form link regex
1 parent 560ca52 commit 86ec355

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/shared.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { EditorConfig } from "./types";
22

33
const isFormLink = (url: string) => {
4-
const regex = /^https:\/\/[^.]+\.simplepdf\.eu\/[^\/]+\/form\/.+/;
4+
const regex = /^https:\/\/[^.]+\.simplepdf\.com\/[^\/]+\/form\/.+/;
55
return regex.test(url);
66
};
77

0 commit comments

Comments
 (0)