Skip to content

Commit df39c3a

Browse files
committed
Changes from PR feedback
1 parent 050c6cf commit df39c3a

3 files changed

Lines changed: 2 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Getting started
1414
6. Wait a few seconds for the initial build to finish.
1515
7. Open http://127.0.0.1:8080/ in your browser to see your newly built Vector.
1616

17-
Wiht `npm start`, Any changes you make to the source files will cause a rebuild so
17+
With `npm start`, any changes you make to the source files will cause a rebuild so
1818
your changes will show up when you refresh.
1919

2020
For production use, run `npm run build` to build all the necessary files

src/skins/vector/views/molecules/EventAsTextTile.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ module.exports = React.createClass({
3333
var text = TextForEvent.textForEvent(this.props.mxEvent);
3434
if (text == null || text.length == 0) return null;
3535

36-
var MessageTimestamp = sdk.getComponent('atoms.MessageTimestamp');
37-
var MemberAvatar = sdk.getComponent('atoms.MemberAvatar');
3836
var timestamp = this.props.last ? <MessageTimestamp ts={this.props.mxEvent.getTs()} /> : null;
3937
var avatar = this.props.mxEvent.sender ? <MemberAvatar member={this.props.mxEvent.sender} /> : null;
4038
return (

src/skins/vector/views/molecules/RoomCreate.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,9 @@ limitations under the License.
1818

1919
var React = require('react');
2020

21-
//var RoomCreateController = require('matrix-react-sdk/lib/controllers/molecules/RoomCreateController')
22-
2321
module.exports = React.createClass({
2422
displayName: 'RoomCreate',
25-
// mixins: [RoomCreateController],
23+
2624
render: function() {
2725
return (
2826
<div className="mx_RoomCreate">

0 commit comments

Comments
 (0)