You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
panic: reflect: Field index out of range [recovered]
panic: reflect: Field index out of range
The reason for this is the exported fields, which are tried to be merged into hermes.Default theme which is of type struct{}. Therefore it's not possible to have exported fields on a struct implementing hermes.Theme interface.
The text was updated successfully, but these errors were encountered:
Given a Theme like this:
And calling hermes like this:
Will result int
The reason for this is the exported fields, which are tried to be merged into
hermes.Default
theme which is of typestruct{}
. Therefore it's not possible to have exported fields on a struct implementinghermes.Theme
interface.The text was updated successfully, but these errors were encountered: