Remove debugging console statements
This commit is contained in:
parent
56c53df1dc
commit
76b83acf01
1 changed files with 1 additions and 3 deletions
|
@ -17,8 +17,7 @@ export default class InstalledThemes {
|
|||
static InstalledThemes(osmConnection: OsmConnection) : UIEventSource<{ layout: LayoutConfig; definition: string }[]>{
|
||||
return osmConnection.preferencesHandler.preferences.map<{ layout: LayoutConfig, definition: string }[]>(allPreferences => {
|
||||
const installedThemes: { layout: LayoutConfig, definition: string }[] = [];
|
||||
console.log("UPdating the installed themes")
|
||||
console.log("All preferences are ",allPreferences)
|
||||
console.log("Updating the installed themes")
|
||||
if (allPreferences === undefined) {
|
||||
console.log("All prefs is undefined");
|
||||
return installedThemes;
|
||||
|
@ -35,7 +34,6 @@ export default class InstalledThemes {
|
|||
}
|
||||
try {
|
||||
var json = atob(customLayout.data);
|
||||
console.log(json);
|
||||
const layout = new LayoutConfig(
|
||||
JSON.parse(json));
|
||||
installedThemes.push({
|
||||
|
|
Loading…
Reference in a new issue