1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00

amend prev commit

This commit is contained in:
ivaosthu 2016-12-05 15:50:34 +01:00
parent e58bf41b91
commit 2eb9e878b1

View File

@ -55,7 +55,8 @@ class ClientStrategyStore {
.select('strategies') .select('strategies')
.where('app_name', appName) .where('app_name', appName)
.from(TABLE) .from(TABLE)
.map((row) => row.strategies); .map((row) => row.strategies)
.then(arr => arr[0])
} }
}; };