Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
salazarm committed Oct 6, 2023
1 parent 00547a5 commit c4938da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type CloudFeatureFlagContextType = {
enableAMPTimeline: boolean;
};
export const CloudFeatureFlagContext = React.createContext<CloudFeatureFlagContextType>({
enableAMPTimeline: false,
enableAMPTimeline: true,
});
export const useCloudFeatureFlag = () => {
return React.useContext(CloudFeatureFlagContext);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ export const AutomaterializationEvaluationHistoryTable = ({
};

const StatusTag = ({tick}: {tick: AssetDaemonTickFragment}) => {
const {status, error, requestedMaterializationsForAssets} = tick;
const count = Object.keys(requestedMaterializationsForAssets).length;
const {status, error, requestedAssetMaterializationCount} = tick;
const count = requestedAssetMaterializationCount;
const [showErrors, setShowErrors] = React.useState(false);
const tag = React.useMemo(() => {
switch (status) {
Expand Down

0 comments on commit c4938da

Please sign in to comment.