Skip to content

Commit 6dbc6ef

Browse files
Timothy-DynamsoftFelix-Dynamsoft
authored andcommitted
update framework license
1 parent 6450419 commit 6dbc6ef

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

samples/frameworks/angular/src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export class AppComponent implements OnInit {
2121
ngOnInit(): void {
2222
// Configuration object for initializing the MRZ Scanner instance
2323
const config = {
24-
license: 'DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9', // Replace with your Dynamsoft license key
24+
license: 'YOUR_LICENSE_KEY_HERE', // Replace with your Dynamsoft license key
2525
};
2626

2727
const mrzscanner = new MRZScanner(config);

samples/frameworks/react-hooks/src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function App() {
1111
useEffect(() => {
1212
// Configuration object for initializing the MRZ Scanner instance
1313
const config = {
14-
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", // Replace with your Dynamsoft license key
14+
license: "YOUR_LICENSE_KEY_HERE", // Replace with your Dynamsoft license key
1515
};
1616

1717
// Create an instance of the mrzScanner with the provided configuration

samples/frameworks/vue/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const result = ref({
2323
onMounted(async () => {
2424
// Configuration object for initializing the MRZ Scanner instance
2525
const config = {
26-
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", // Replace with your Dynamsoft license key
26+
license: "YOUR_LICENSE_KEY_HERE", // Replace with your Dynamsoft license key
2727
};
2828
const mrzscanner = new MRZScanner(config);
2929

0 commit comments

Comments
 (0)