lassecapel commited on
Commit
399affd
·
1 Parent(s): 604ab87

update comment to reflect the the codeline

Browse files
Files changed (1) hide show
  1. app/lib/stores/workbench.ts +1 -1
app/lib/stores/workbench.ts CHANGED
@@ -327,7 +327,7 @@ export class WorkbenchStore {
327
  async downloadZip() {
328
  const zip = new JSZip();
329
  const files = this.files.get();
330
- // Get the project name (assuming it's stored in this.projectName)
331
  const projectName = (description.value ?? 'project').toLocaleLowerCase().split(' ').join('_');
332
 
333
  // Generate a simple 6-character hash based on the current timestamp
 
327
  async downloadZip() {
328
  const zip = new JSZip();
329
  const files = this.files.get();
330
+ // Get the project name from the description input, or use a default name
331
  const projectName = (description.value ?? 'project').toLocaleLowerCase().split(' ').join('_');
332
 
333
  // Generate a simple 6-character hash based on the current timestamp