Skip to content

Commit

Permalink
fix(docs): correct typo in vue preview docs
Browse files Browse the repository at this point in the history
Fixed a typo in the vue preview docs where 'light' had an extra single quote.
  • Loading branch information
AlirezaEbrahimkhani committed May 19, 2024
1 parent df51f12 commit 3beb27c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ setup((app) => {
const preview = {
decorators: [
(story, context) => {
const theme = context.globals.theme || 'light'';
const theme = context.globals.theme || 'light';
return {
components: { story, VApp },
template: `
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ setup((app) => {
const preview: Preview = {
decorators: [
(story, context) => {
const theme = context.globals.theme || 'light'';
const theme = context.globals.theme || 'light';
return {
components: { story, VApp },
template: `
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ setup((app) => {
const preview: Preview = {
decorators: [
(story, context) => {
const theme = context.globals.theme || 'light'';
const theme = context.globals.theme || 'light';
return {
components: { story, VApp },
template: `
Expand Down

0 comments on commit 3beb27c

Please sign in to comment.