Skip to content

Commit 8e5175c

Browse files
committed
fix: overflow; reduce morpher char set
1 parent 35da24d commit 8e5175c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/[locale]/10years/_components/TenYearHero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const TenYearHero = () => {
3333
// loops over chars to morph a text to another
3434
const morpher = (start: string, end: string): void => {
3535
// array of chars to randomly morph the text between start and end
36-
const chars = "abcdefghijklmnopqrstuvwxyz".split("")
36+
const chars = "abcdfgijklnopqsvwxyz".split("")
3737
// duration of the global morph
3838
const duration = 3
3939
// speed of the morph for each letter

0 commit comments

Comments
 (0)