Skip to content

Commit 01ac853

Browse files
committed
fix: uncomment and import components in protectData and manageDataAccess for proper functionality
1 parent 13531e5 commit 01ac853

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/overview/helloWorld/2-protectData.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup>
2-
// import ProtectData from '../../modules/helloWorld/ProtectData.vue';
2+
import ProtectData from '../../modules/helloWorld/ProtectData.vue';
33
</script>
44

55
# 🛡️ Let's protect data

src/overview/helloWorld/4-manageDataAccess.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
<script setup>
2-
//TODO: Fix it
3-
// import GrantAccess from '../../modules/helloWorld/GrantAccess.vue';
4-
// import { useWalletConnection } from '../../hooks/useWalletConnection.vue';
2+
import GrantAccess from '../../modules/helloWorld/GrantAccess.vue';
3+
import { useWalletConnection } from '../../hooks/useWalletConnection.vue';
54

6-
// const { protectedDataAddress } = useWalletConnection();
5+
const { protectedDataAddress } = useWalletConnection();
76
</script>
87

98
# 🔑 Manage Data Access

0 commit comments

Comments
 (0)