Skip to content

Commit

Permalink
Merge pull request #37 from portapack-mayhem/help_fix
Browse files Browse the repository at this point in the history
Fixed help command bug
  • Loading branch information
jLynx authored Jan 14, 2024
2 parents 72e068b + b6fa11a commit 7da90c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Controller/Controller.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const Controller = () => {

useEffect(() => {
// We dont add this to the console as its not needed. This may change in the future
if (consoleMessage.includes("screenframe")) {
if (consoleMessage.startsWith("screenframe")) {
renderFrame();
setLoadingFrame(false);
} else {
Expand Down

0 comments on commit 7da90c1

Please sign in to comment.