The New Way to Build! Introducing ReUI — the developer platform for agentic UI with shadcn/ui
Learn More

Logo broken in mobile here https://preview.keenthemes.com/metronic8/react/demo1/dashboard


In mobile view the logo is broken.

Also, I'm wondering about the ETA of this: https://devs.keenthemes.com/question/bug-in-create-modal-continuesubmit-navigation-button

Thanks.


Text formatting options
Submit
Click any option to insert into your comment. Select text first to wrap it.
  • **text** to make things bold
  • *text* to emphasize
  • ### Heading to make headings
  • [link text](url) for links
  • ![alt text](image-url) to paste in an image
  • - item to make a list
  • 1. item to make an ordered list
  • > quote to quote somebody
  • `code` for single line of code
  • ```js ... ``` for JS code block
  • ```html ... ``` for HTML code block
  • ```scss ... ``` for SCSS code block
  • ```php ... ``` for PHP code block
  • --- for a horizontal rule
  • happy  :)
  • shocked  :|
  • sad  :(

Replies (3)


Thanks! It works!



Hi,

Glad to hear that. Let me know if you will need any further help.

Regards,
Lauris Stepanovs,
Keenthemes Support Team


Your Support Matters!

We will highly appreciate your Metronic Review on Themeforest.
Please go to Themeforest Downloads page, select Metronic & leave your feedback.

Hi,

Sorry for the late reply.

We will include a fix in the next Metronic release. For now, as a temporary solution, you can update prevStep and submitStep as shown below.


const prevStep = () => {
if (!stepper.current) {
return
}

stepper.current.goPrev()

setCurrentSchema(createAccountSchemas[stepper.current.currentStepIndex - 1])

setSubmitButton(stepper.current.currentStepIndex === stepper.current.totatStepsNumber)
}



const submitStep = (values: ICreateAccount, actions: FormikValues) => {
if (!stepper.current) {
return
}

if (stepper.current.currentStepIndex !== stepper.current.totatStepsNumber) {
stepper.current.goNext()
} else {
stepper.current.goto(1)
actions.resetForm()
}

setSubmitButton(stepper.current.currentStepIndex === stepper.current.totatStepsNumber)

setCurrentSchema(createAccountSchemas[stepper.current.currentStepIndex - 1])
}


Regards,
Lauris Stepanovs,
Keenthemes Support Team


Text formatting options
Submit
Click any option to insert into your comment. Select text first to wrap it.
  • **text** to make things bold
  • *text* to emphasize
  • ### Heading to make headings
  • [link text](url) for links
  • ![alt text](image-url) to paste in an image
  • - item to make a list
  • 1. item to make an ordered list
  • > quote to quote somebody
  • `code` for single line of code
  • ```js ... ``` for JS code block
  • ```html ... ``` for HTML code block
  • ```scss ... ``` for SCSS code block
  • ```php ... ``` for PHP code block
  • --- for a horizontal rule
  • happy  :)
  • shocked  :|
  • sad  :(
Text formatting options
Submit
Click any option to insert into your comment. Select text first to wrap it.
  • **text** to make things bold
  • *text* to emphasize
  • ### Heading to make headings
  • [link text](url) for links
  • ![alt text](image-url) to paste in an image
  • - item to make a list
  • 1. item to make an ordered list
  • > quote to quote somebody
  • `code` for single line of code
  • ```js ... ``` for JS code block
  • ```html ... ``` for HTML code block
  • ```scss ... ``` for SCSS code block
  • ```php ... ``` for PHP code block
  • --- for a horizontal rule
  • happy  :)
  • shocked  :|
  • sad  :(