We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb2a274 commit 4217967Copy full SHA for 4217967
src/helpers/spaceValidation.ts
@@ -70,15 +70,15 @@ export async function validateSpaceSettings(
70
const strategy = getStrategies()[id];
71
72
if (!strategy) {
73
- return Promise.reject(`strategy "${id}" is not a valid strategy`);
+ return Promise.reject(`strategy '${id}' is not a valid strategy`);
74
}
75
76
if (strategy.disabled) {
77
- return Promise.reject(`strategy "${id}" is not available anymore`);
+ return Promise.reject(`strategy '${id}' is not available anymore`);
78
79
80
if (strategy.override && spaceType !== 'turbo') {
81
- return Promise.reject(`strategy "${id}" is only available for pro spaces`);
+ return Promise.reject(`strategy '${id}' is only available for pro spaces`);
82
83
84
0 commit comments