Skip to content

Commit

Permalink
fix: workflow error
Browse files Browse the repository at this point in the history
  • Loading branch information
lllzhmio committed Nov 12, 2024
1 parent 1453f0e commit be956ff
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 7 deletions.
32 changes: 27 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/lodash": "^4.14.202",
"react-dev-utils": "^12.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/Page/Controls/Controls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function Controls() {
useEffect(() => {
setVoiceToggling(true);
cancelVoiceToggling();
}, [voiceIdx]);
}, [voiceIdx, cancelVoiceToggling]);

return (
<div className="Controls__wrapper">
Expand Down
2 changes: 1 addition & 1 deletion src/Page/Dialog/WelcomeSpeech/WelcomeSpeech.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function WelcomeSpeech() {
if (!loading) {
get('welcome', WELCOME_TEXT);
}
}, []);
}, [loading, get]);

return res ? <audio src={res.url} autoPlay></audio> : null;
}
4 changes: 4 additions & 0 deletions src/Page/PageContent/Essay/Essay.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
.Essay {
width: 580px;
height: 100%;

display: flex;
justify-content: flex-end;
align-items: flex-end;
}

.Essay__title {
Expand Down

0 comments on commit be956ff

Please sign in to comment.