Skip to content

Commit

Permalink
fix: replace flag name
Browse files Browse the repository at this point in the history
  • Loading branch information
Tymek committed Sep 25, 2024
1 parent 0b7f7b3 commit 08d5173
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/component/onboarding/snippets/svelte.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ npm install @unleash/proxy-client-svelte
```svelte
<script lang="ts">
import { useFlag } from '@unleash/proxy-client-svelte';
const enabled = useFlag('example-flag');
const enabled = useFlag('<YOUR_FLAG>');
</script>
<section>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/component/onboarding/snippets/vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ npm install @unleash/proxy-client-vue
```vue
<script setup lang="ts">
import { useFlag } from '@unleash/proxy-client-vue'
const enabled = useFlag('example-flag')
const enabled = useFlag('<YOUR_FLAG>')
</script>
<template>
Expand Down

0 comments on commit 08d5173

Please sign in to comment.