File tree 4 files changed +0
-13
lines changed
4 files changed +0
-13
lines changed Original file line number Diff line number Diff line change 63
63
AWS_S3_BUCKET : boxel-host-preview.stack.cards
64
64
AWS_REGION : us-east-1
65
65
AWS_CLOUDFRONT_DISTRIBUTION : EU4RGLH4EOCHJ
66
- ENABLE_PLAYGROUND : true
67
66
AI_ASSISTANT_EXPERIMENTAL_ATTACHING_FILES_ENABLED : true
68
67
with :
69
68
package : boxel-host
94
93
AWS_S3_BUCKET : boxel-host-preview.boxel.ai
95
94
AWS_REGION : us-east-1
96
95
AWS_CLOUDFRONT_DISTRIBUTION : E2PZR9CIAW093B
97
- ENABLE_PLAYGROUND : true
98
96
AI_ASSISTANT_EXPERIMENTAL_ATTACHING_FILES_ENABLED : true
99
97
with :
100
98
package : boxel-host
Original file line number Diff line number Diff line change @@ -41,8 +41,6 @@ import RecentFiles from '@cardstack/host/components/editor/recent-files';
41
41
import CodeSubmodeEditorIndicator from ' @cardstack/host/components/operator-mode/code-submode/editor-indicator' ;
42
42
import SyntaxErrorDisplay from ' @cardstack/host/components/operator-mode/syntax-error-display' ;
43
43
44
- import ENV from ' @cardstack/host/config/environment' ;
45
-
46
44
import { getCard } from ' @cardstack/host/resources/card-resource' ;
47
45
import { isReady , type FileResource } from ' @cardstack/host/resources/file' ;
48
46
import {
@@ -88,8 +86,6 @@ import DetailPanel from './detail-panel';
88
86
import NewFileButton from ' ./new-file-button' ;
89
87
import SubmodeLayout from ' ./submode-layout' ;
90
88
91
- const isPlaygroundEnabled = ENV .featureFlags ?.ENABLE_PLAYGROUND ;
92
-
93
89
interface Signature {
94
90
Args: {
95
91
saveSourceOnClose: (url : URL , content : string ) => void ;
@@ -469,9 +465,6 @@ export default class CodeSubmode extends Component<Signature> {
469
465
}
470
466
471
467
private get shouldDisplayPlayground() {
472
- if (! isPlaygroundEnabled ) {
473
- return false ;
474
- }
475
468
return isCardDef (this .selectedCardOrField ?.cardOrField );
476
469
}
477
470
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ declare const config: {
29
29
assetsURL : string ;
30
30
stripePaymentLink : string ;
31
31
featureFlags ?: {
32
- ENABLE_PLAYGROUND : boolean ;
33
32
AI_ASSISTANT_EXPERIMENTAL_ATTACHING_FILES_ENABLED : boolean ;
34
33
} ;
35
34
} ;
Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ module.exports = function (environment) {
42
42
resolvedBaseRealmURL :
43
43
process . env . RESOLVED_BASE_REALM_URL || 'http://localhost:4201/base/' ,
44
44
featureFlags : {
45
- ENABLE_PLAYGROUND : process . env . ENABLE_PLAYGROUND || false ,
46
45
AI_ASSISTANT_EXPERIMENTAL_ATTACHING_FILES_ENABLED :
47
46
process . env . AI_ASSISTANT_EXPERIMENTAL_ATTACHING_FILES_ENABLED || false ,
48
47
} ,
@@ -55,7 +54,6 @@ module.exports = function (environment) {
55
54
// ENV.APP.LOG_TRANSITIONS_INTERNAL = true;
56
55
// ENV.APP.LOG_VIEW_LOOKUPS = true;
57
56
ENV . featureFlags = {
58
- ENABLE_PLAYGROUND : true ,
59
57
AI_ASSISTANT_EXPERIMENTAL_ATTACHING_FILES_ENABLED : true ,
60
58
} ;
61
59
}
@@ -78,7 +76,6 @@ module.exports = function (environment) {
78
76
ENV . minSaveTaskDurationMs = 0 ;
79
77
ENV . sqlSchema = sqlSchema ;
80
78
ENV . featureFlags = {
81
- ENABLE_PLAYGROUND : true ,
82
79
AI_ASSISTANT_EXPERIMENTAL_ATTACHING_FILES_ENABLED : true ,
83
80
} ;
84
81
}
You can’t perform that action at this time.
0 commit comments