mirror of
				https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
				synced 2025-11-04 08:13:43 +08:00 
			
		
		
		
	fix: #2135 disable cmd + arrow to change session
This commit is contained in:
		@@ -37,7 +37,7 @@ function useHotKey() {
 | 
			
		||||
 | 
			
		||||
  useEffect(() => {
 | 
			
		||||
    const onKeyDown = (e: KeyboardEvent) => {
 | 
			
		||||
      if (e.metaKey || e.altKey || e.ctrlKey) {
 | 
			
		||||
      if (e.altKey || e.ctrlKey) {
 | 
			
		||||
        if (e.key === "ArrowUp") {
 | 
			
		||||
          chatStore.nextSession(-1);
 | 
			
		||||
        } else if (e.key === "ArrowDown") {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user