diff --git a/code/game/objects/items/singularityhammer.dm b/code/game/objects/items/singularityhammer.dm
index 7daa895ecfb8..0c98af3d61ca 100644
--- a/code/game/objects/items/singularityhammer.dm
+++ b/code/game/objects/items/singularityhammer.dm
@@ -12,7 +12,7 @@
slot_flags = ITEM_SLOT_BACK
force = 5
- force_wielded = type::force * 4
+ force_wielded = 20
throwforce = 15
throw_range = 1
@@ -80,7 +80,7 @@
slot_flags = ITEM_SLOT_BACK
force = 5
- force_wielded = type::force * 5
+ force_wielded = 25
throwforce = 30
throw_range = 7
diff --git a/tgui/packages/tgui/components/Blink.jsx b/tgui/packages/tgui/components/Blink.jsx
index 7d7bb16170a9..dc12f84346ef 100644
--- a/tgui/packages/tgui/components/Blink.jsx
+++ b/tgui/packages/tgui/components/Blink.jsx
@@ -55,14 +55,14 @@ export class Blink extends Component {
clearTimeout(this.timer);
}
- render(props) {
+ render() {
return (
- {props.children}
+ {this.props.children}
);
}
diff --git a/tgui/packages/tgui/debug/KitchenSink.jsx b/tgui/packages/tgui/debug/KitchenSink.jsx
index d215ab777d80..7fb74819161b 100644
--- a/tgui/packages/tgui/debug/KitchenSink.jsx
+++ b/tgui/packages/tgui/debug/KitchenSink.jsx
@@ -8,7 +8,7 @@ import { useLocalState } from '../backend';
import { Flex, Section, Tabs } from '../components';
import { Pane, Window } from '../layouts';
-const r = require.context('../stories', false, /\.stories\.js$/);
+const r = require.context('../stories', false, /\.stories\.jsx$/);
/**
* @returns {{
@@ -27,6 +27,7 @@ export const KitchenSink = (props) => {
const stories = getStories();
const story = stories[pageIndex];
const Layout = panel ? Pane : Window;
+
return (