Skip to content

Commit

Permalink
Style & comments
Browse files Browse the repository at this point in the history
  • Loading branch information
thsparks committed Mar 22, 2024
1 parent c6b44a5 commit 9929a92
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion skillmap/src/store/reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -561,4 +561,4 @@ function getCompletionModals(map: SkillMap, activityId: string) {
return result;
}

export default topReducer;
export default topReducer;
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.block-picker-modal {
div[class="common-modal"] {
// category color is overridden by javascript with category color
// category color is overridden in BlockPicker javascript
--category-color: var(--pxt-content-secondary-foreground);

height: 80vh;
Expand Down
4 changes: 1 addition & 3 deletions teachertool/src/transforms/loadProjectMetadataAsync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { getProjectMetaAsync } from "../services/backendRequests";
import { logDebug } from "../services/loggingService";
import { showToast } from "./showToast";
import { makeToast } from "../utils";
import { setEvalResultsPending } from "./setEvalResultsPending";
import { initNewProjectResults } from "./initNewProjectResults";

export async function loadProjectMetadataAsync(inputText: string, shareLink: string) {
Expand Down Expand Up @@ -35,7 +36,4 @@ export async function loadProjectMetadataAsync(inputText: string, shareLink: str
dispatch(Actions.setProjectMetadata(projectData));
initNewProjectResults();
logDebug(`Loaded project metadata: ${JSON.stringify(projMeta)}`);

// TODO thsparks : We need to loadToolboxCategoriesAsync once the iframe has loaded, so it doesn't work to leave it here.
// TODO thsparks : Reload all blocks.
}

0 comments on commit 9929a92

Please sign in to comment.