Skip to content

Commit 2765a72

Browse files
committed
2 parents deb1a4d + 775e0b0 commit 2765a72

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules
22
dist
33
.DS_Store
4+
5+
out

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
"repository": {},
1313
"license": "UNLICENSED",
1414
"dependencies": {
15-
"@remotion/bundler": "^2.0.0",
16-
"@remotion/cli": "^2.0.0",
17-
"@remotion/eslint-config": "^2.0.0",
18-
"@remotion/renderer": "^2.0.0",
15+
"@remotion/bundler": "^2.3.2",
16+
"@remotion/cli": "^2.3.2",
17+
"@remotion/eslint-config": "^2.3.2",
18+
"@remotion/renderer": "^2.3.2",
1919
"eslint": "^7.15.0",
2020
"express": "^4.17.1",
2121
"prettier": "^2.2.1",
2222
"react": "^17.0.2",
2323
"react-dom": "^17.0.2",
24-
"remotion": "^2.0.0"
24+
"remotion": "^2.3.2"
2525
}
2626
}

src/HelloWorld.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ export const HelloWorld = ({titleText, titleColor}) => {
2424
<Sequence from={0} durationInFrames={videoConfig.durationInFrames}>
2525
<Logo transitionStart={transitionStart} />
2626
</Sequence>
27-
<Sequence from={transitionStart + 10} durationInFrames={Infinity}>
27+
<Sequence from={transitionStart + 10} >
2828
<Title titleText={titleText} titleColor={titleColor} />
2929
</Sequence>
30-
<Sequence from={transitionStart + 50} durationInFrames={Infinity}>
30+
<Sequence from={transitionStart + 50} >
3131
<Subtitle />
3232
</Sequence>
3333
</div>

0 commit comments

Comments
 (0)