diff --git a/dash_app/layout.py b/dash_app/layout.py index 5175acc..f34916d 100644 --- a/dash_app/layout.py +++ b/dash_app/layout.py @@ -215,7 +215,6 @@ def tabs_card(): children=[ html.Br(), - # html.Div(id="map-select-container", # className="select-container", # children=[ diff --git a/lambda_function.py b/lambda_function.py index 6ee8103..9e3acee 100644 --- a/lambda_function.py +++ b/lambda_function.py @@ -17,8 +17,8 @@ def get_wsgi_handler(): _type_: lambda handler that is wsgi compatible and backed by the Dash application """ return make_lambda_handler( - # wsgi_app=create_app().server, - wsgi_app=app.server, + wsgi_app=create_app().server, + # wsgi_app=app.server, binary_support=True, )