diff --git a/build-scripts/gulp/gather-static.js b/build-scripts/gulp/gather-static.js
index 274581f322..2bdfda5f75 100644
--- a/build-scripts/gulp/gather-static.js
+++ b/build-scripts/gulp/gather-static.js
@@ -69,10 +69,6 @@ function copyMapPanel(staticDir) {
function compressStatic(staticDir) {
const staticPath = genStaticPath(staticDir);
- const fonts = gulp
- .src(staticPath("fonts/**/*.ttf"))
- .pipe(zopfli())
- .pipe(gulp.dest(staticPath("fonts")));
const polyfills = gulp
.src(staticPath("polyfills/*.js"))
.pipe(zopfli())
@@ -82,7 +78,7 @@ function compressStatic(staticDir) {
.pipe(zopfli())
.pipe(gulp.dest(staticPath("translations")));
- return merge(fonts, polyfills, translations);
+ return merge(polyfills, translations);
}
gulp.task("copy-static", (done) => {
diff --git a/src/html/authorize.html.template b/src/html/authorize.html.template
index 6833ede06e..9b057978f9 100644
--- a/src/html/authorize.html.template
+++ b/src/html/authorize.html.template
@@ -5,13 +5,13 @@
diff --git a/src/html/onboarding.html.template b/src/html/onboarding.html.template
index c63949ae87..8f98f28290 100644
--- a/src/html/onboarding.html.template
+++ b/src/html/onboarding.html.template
@@ -5,13 +5,13 @@