diff --git a/prog/static.go b/prog/static.go index bcd862573..950c7a804 100644 --- a/prog/static.go +++ b/prog/static.go @@ -11,7 +11,6 @@ import ( func GetFS(useExternal bool) http.FileSystem { if useExternal { return externalui.FS(false) - } else { - return staticui.FS(false) } + return staticui.FS(false) }