Skip to content

Commit

Permalink
fix(editor-ui): welcome modal localStorage key naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
hejtful committed Dec 19, 2024
1 parent bea854d commit 41a5acc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { pipe } from 'fp-ts/lib/function'
import * as t from 'io-ts'
import { useEffect, useState } from 'react'

const localStorageKey = 'hasUserSeenWelcomeModal'
const localStorageKey = 'serlo-editor::hasUserSeenWelcomeModal'

export const useWelcomeModal = () => {
const [isOpen, setIsOpen] = useState(false)
Expand Down

0 comments on commit 41a5acc

Please sign in to comment.