This commit is contained in:
Michael Quigley 2024-09-06 11:44:01 -04:00
parent b7b7b8b964
commit 5d452daa3c
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -2,7 +2,6 @@ package sdk
import (
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"reflect"
)
@ -16,7 +15,6 @@ type FrontendConfig struct {
}
func FrontendConfigFromMap(m map[string]interface{}) (*FrontendConfig, error) {
logrus.Info(m)
out := &FrontendConfig{}
if v, found := m["interstitial"]; found {
out.Interstitial = v.(bool)