Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
CansyLand committed Sep 25, 2023
1 parent d8cd5f9 commit e0ebe19
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Party-Time/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "SDK7 Template scene",
"version": "1.0.0",
"devDependencies": {
"@dcl/js-runtime": "next",
"@dcl/js-runtime": "7.3.15-6176019393.commit-761f180",
"@dcl/sdk": "next"
},
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions Party-Time/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ export function main() {
const signpost = buildScene()

// Time for the party to start
const partyStart = new Date('2023-09-14T19:00:00+03:00') // GMT+3
const partyEnd = new Date('2023-09-15T02:00:00+03:00') // GMT+3
const partyStart = new Date('2023-10-31T19:00:00+03:00') // GMT+3
const partyEnd = new Date('2023-11-01T02:00:00+03:00') // GMT+3

// Function to call the API
async function checkTime() {
Expand Down
2 changes: 1 addition & 1 deletion Party-Time/src/sceneFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export function buildScene() {
})

// Signpost Text
const signpostText = engine.addEntity(true)
const signpostText = engine.addEntity()
Transform.create(signpostText, {
parent: signpost,
position: { x: 0, y: 1.3, z: 0.45 },
Expand Down

0 comments on commit e0ebe19

Please sign in to comment.