diff --git a/html/src/repository/config.js b/html/src/repository/config.js
index 308d6098..64d684da 100644
--- a/html/src/repository/config.js
+++ b/html/src/repository/config.js
@@ -9,7 +9,7 @@ class ConfigRepository extends SharedRepository {
'CREATE TABLE IF NOT EXISTS configs (`key` TEXT PRIMARY KEY, `value` TEXT)'
);
await sqliteService.execute(
- (key, value) => sharedRepository.setString(key, value),
+ ([key, value]) => sharedRepository.setString(key, value),
'SELECT `key`, `value` FROM configs'
);
syncLoop();
diff --git a/html/src/vr.js b/html/src/vr.js
index 94618f2d..5bb43e87 100644
--- a/html/src/vr.js
+++ b/html/src/vr.js
@@ -565,7 +565,6 @@ import webApiService from './service/webapi.js';
var $app = {
data: {
API,
- VRCX,
// 1 = 대시보드랑 손목에 보이는거
// 2 = 항상 화면에 보이는 거
appType: location.href.substr(-1),